Skip to content

Places plugin icon does not align correctly when on single row of a double row panel

Using a two row panel, if the Whisker Menu icon is set to 'Use a single panel row', then thethe Places plugin icon is not aligned properly with other panel items. Depending on the icon chosen it can also look a little small. A couple of examples at default settings:

WhiskerIconBug

WhiskerIconBug1

The workaround is to adjust it in gtk.css, and particularly with min-height and min-width settings. E.g. This is with:

#whiskermenu-button image { -gtk-icon-transform: scale(1.1); min-height: 40px; min-width: 40px; }

WhiskerIconBug2

And this is with:

#whiskermenu-button image { -gtk-icon-transform: scale(1.3); min-height: 40px; min-width: 40px; }

WhiskerIconBug3

As an aside, you can see that the scaling factor here is making the icons blurry, despite using SVG source images. And the Places panel icon also appears to be fuzzy here by default, so I will try to investigate that further sometime as a separate issue.

Edited by Brian Steer