[Feature Request] 50% icon size option for list view
here is an example from nautilus:
here is what cosmic is currently capable of (ignore missing icons, no idea what's happening there):
The missing icons issue is tracked in #48 which I'm trying to fix now.
As for this issue, I'll leave it open for another contributor as the fix seems pretty small. I don't want to hog them.
Take a look at src/app.rs near line 539 if you know a bit of Rust.
unfortunately i don't know rust, my experience currently lies in python
The fix doesn't seem to be that small @joshuamegnauth54.
When the list size is <100%, all text in the mouse_area stops displaying. The font size stays the same, regardless of icon size (in both grid and list view), but it seems the padding at list sizes below 100% prevents the text from showing up (the icons also seem a bit too small at 50%). So different padding might be necessary at smaller sizes.
Another possible fix is to make the padding for the sorting headings (Name, Modified, Size) fixed, since it doesn't need to resize (and looks weird) when changing list size (and they also disappear when <100%).
Unfortunately, I'm not familiar enough with Rust and the codebase to attempt to do this.