How to change the menu icon size? - Printable Version +- Gimp-Forum.net (https://www.gimp-forum.net) +-- Forum: GIMP (https://www.gimp-forum.net/Forum-GIMP) +--- Forum: General questions (https://www.gimp-forum.net/Forum-General-questions) +--- Thread: How to change the menu icon size? (/Thread-How-to-change-the-menu-icon-size) |
How to change the menu icon size? - Marge Simpson - 10-20-2020 I rotated the screen capture 90 degrees because it would be too long vertically. As you see below, even though I have changed the UI font size by editing the "gtkrc" file, the icons does not seem to scale. Those images seem to be from share\gimp\2.0\icons\Symbolic-High-Contrast\scalable\apps, and they are vector images (.svg), but they don't scale at all. Whether at I choose Preference->Interface->Icon Theme "Guess icon size from resolution" or "Custom icon size = Huge", the menu icon size does not change. Is there any way to change the menu icon size? Or is this a bug and there is currently no way to change the menu icon size? RE: How to change the menu icon size? - denzjos - 10-20-2020 I think that is os related. In windows you can change them but the text and all other things are changed : https://superuser.com/questions/1277089/icons-in-all-of-programs-are-very-small-windows-10 RE: How to change the menu icon size? - Kevin - 10-20-2020 Add the following to your gtkrc file: Code: gtk-icon-sizes = "gtk-menu=24,24" That should change the menu icons from 13 to 24 pixels. [attachment=5091] There are other possible predefined sizes, but I don't know if they have any effect in GIMP. Code: GTK+ itself use the following named icon sizes: gtk-menu, gtk-button, gtk-small-toolbar, gtk-large-toolbar, gtk-dnd, gtk-dialog Code: gtk-icon-sizes = "gtk-menu=13,13:gtk-small-toolbar=16,16:gtk-large-toolbar=24,24:gtk-dnd=32,32" RE: How to change the menu icon size? - Marge Simpson - 10-20-2020 (10-20-2020, 09:08 AM)Kevin Wrote: Oh, finally, a working solution. Thanks. This item (gtk-icon-sizes) did not even exist in the gtkrc file. |