From baf99226502dda739c97c791b788cf9c62ef2f82 Mon Sep 17 00:00:00 2001 From: Andre Miranda Date: Tue, 5 Jun 2018 23:29:01 -0300 Subject: [PATCH] Silence gtk_menu_item_set_right_justified deprecation --- thunar/thunar-window.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/thunar/thunar-window.c b/thunar/thunar-window.c index 3ad80de12..6db84bf3e 100644 --- a/thunar/thunar-window.c +++ b/thunar/thunar-window.c @@ -840,7 +840,9 @@ G_GNUC_END_IGNORE_DEPRECATIONS /* append the menu item for the spinner */ item = gtk_menu_item_new (); gtk_widget_set_sensitive (GTK_WIDGET (item), FALSE); +G_GNUC_BEGIN_IGNORE_DEPRECATIONS gtk_menu_item_set_right_justified (GTK_MENU_ITEM (item), TRUE); +G_GNUC_END_IGNORE_DEPRECATIONS gtk_menu_shell_append (GTK_MENU_SHELL (window->menubar), item); gtk_widget_show (item);