mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-12-27 06:00:22 +00:00
statusicon: use absolute delta to find the nearest icon size
Otherwise, if we only look at (pixel_size - stock_size), we miss the case when the pixel size is smaller than any provided stock size. https://bugzilla.gnome.org/show_bug.cgi?id=673749
This commit is contained in:
parent
54fe6d71c0
commit
c837809960
@ -1328,10 +1328,9 @@ round_pixel_size (GtkWidget *widget,
|
||||
|
||||
for (s = GTK_ICON_SIZE_MENU; s <= GTK_ICON_SIZE_DIALOG; s++)
|
||||
{
|
||||
if (gtk_icon_size_lookup_for_settings (settings, s, &w, &h) &&
|
||||
w <= pixel_size && h <= pixel_size)
|
||||
if (gtk_icon_size_lookup_for_settings (settings, s, &w, &h))
|
||||
{
|
||||
d = MAX (pixel_size - w, pixel_size - h);
|
||||
d = MAX (abs (pixel_size - w), abs (pixel_size - h));
|
||||
if (d < dist)
|
||||
{
|
||||
dist = d;
|
||||
|
Loading…
Reference in New Issue
Block a user