Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
run dialog: force icon size when loading app icon
avoids jumping of nearby UI controls when icon is bigger than requested
  • Loading branch information
monsta committed Mar 19, 2018
1 parent 61ee811 commit 6bbc333
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mate-panel/panel-run-dialog.c
Expand Up @@ -291,7 +291,7 @@ panel_run_dialog_set_icon (PanelRunDialog *dialog,
gtk_icon_size_lookup (GTK_ICON_SIZE_DIALOG, &size, NULL);

GtkIconTheme *icon_theme = gtk_icon_theme_get_default ();
GtkIconInfo *icon_info = gtk_icon_theme_lookup_by_gicon (icon_theme, icon, size, 0);
GtkIconInfo *icon_info = gtk_icon_theme_lookup_by_gicon (icon_theme, icon, size, GTK_ICON_LOOKUP_FORCE_SIZE);
pixbuf = gtk_icon_info_load_icon (icon_info, NULL);
g_object_unref (icon_info);
}
Expand Down

0 comments on commit 6bbc333

Please sign in to comment.