Page 1 of 1
Need help with changing icon size in 'Open File' dialog
Posted: Mon Sep 30, 2024 12:02 pm
by sanya
I want icons in the 'Open File' dialog to be large like in the Classic theme, but I can't figure out how to achieve this. Is there a setting in the style.css file for this?
imgur.com image

Re: Need help with changing icon size in 'Open File' dialog
Posted: Mon Sep 30, 2024 5:19 pm
by musikbear
sanya wrote: ↑Mon Sep 30, 2024 12:02 pm
I want icons in the 'Open File' dialog to be large like in the Classic theme, but I can't figure out how to achieve this. Is there a setting in the style.css file for this?
imgur.com image
Ye.. It sucks!
You cant :/
Its being looked at, but we have a lot of UI issues, we bound LMMS to a annoying unflexible backend
Besides that, since you are new in Forum
Welcome sanya !
Here are all important links:
http://lmms.io/forum/viewtopic.php?f=1&t=4740
-A few rules and useful forum instructions
If you like to introduce yourself, to the community, go here:
http://lmms.io/forum/viewtopic.php?f=4&t=4480
Re: Need help with changing icon size in 'Open File' dialog
Posted: Mon Sep 30, 2024 9:58 pm
by sanya
Thank you for the warm welcome, musikbear =)
I guess if there is no specific setting for this then there must be some setting that causes this size change indirectly. But I'm too lazy to try changing every possibly relevant setting - it's not that important=)
Re: Need help with changing icon size in 'Open File' dialog
Posted: Tue Nov 19, 2024 8:30 am
by sanya
In case anyone is interested I figured this out. You need to add the following rule to style.css
QFileDialog QToolButton{
min-width: 14px;
min-height: 14px;
}
Re: Need help with changing icon size in 'Open File' dialog
Posted: Tue Nov 19, 2024 5:37 pm
by musikbear
sanya wrote: ↑Tue Nov 19, 2024 8:30 am
In case anyone is interested I figured this out. You need to add the following rule to style.css
QFileDialog QToolButton{
min-width: 14px;
min-height: 14px;
}
That is a good find!
Thanks for sharing.