This is an automated email from the git hooks/post-receive script. o c h o s i p u s h e d a c o m m i t t o b r a n c h m a s t e r in repository xfce/xfce4-panel.
commit 789dae4449e2e63c8646e39d1bddcc591fa95a70 Author: Simon Steinbeiss <[email protected]> Date: Fri Nov 23 23:47:09 2018 +0100 directorymenu: Fix crash and drop deprecated call The dialog_icon is a regular GtkImage instead of a XfcePanelImage so the typecheck needed to be adjusted. The alternative_button_order could be dropped because it had no affect. --- plugins/directorymenu/directorymenu.c | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/plugins/directorymenu/directorymenu.c b/plugins/directorymenu/directorymenu.c index 0014e4d..6be1d5c 100644 --- a/plugins/directorymenu/directorymenu.c +++ b/plugins/directorymenu/directorymenu.c @@ -387,17 +387,14 @@ directory_menu_plugin_configure_plugin_icon_chooser (GtkWidget *button gchar *icon; panel_return_if_fail (XFCE_IS_DIRECTORY_MENU_PLUGIN (plugin)); - panel_return_if_fail (XFCE_IS_PANEL_IMAGE (plugin->dialog_icon)); + panel_return_if_fail (GTK_IS_IMAGE (plugin->dialog_icon)); chooser = exo_icon_chooser_dialog_new (_("Select An Icon"), GTK_WINDOW (gtk_widget_get_toplevel (button)), - _("Cancel"), GTK_RESPONSE_CANCEL, - _("OK"), GTK_RESPONSE_ACCEPT, + _("_Cancel"), GTK_RESPONSE_CANCEL, + _("_OK"), GTK_RESPONSE_ACCEPT, NULL); gtk_dialog_set_default_response (GTK_DIALOG (chooser), GTK_RESPONSE_ACCEPT); - gtk_dialog_set_alternative_button_order (GTK_DIALOG (chooser), - GTK_RESPONSE_ACCEPT, - GTK_RESPONSE_CANCEL, -1); if (!panel_str_is_empty (plugin->icon_name)) exo_icon_chooser_dialog_set_icon (EXO_ICON_CHOOSER_DIALOG (chooser), plugin->icon_name); -- To stop receiving notification emails like this one, please contact the administrator of this repository. _______________________________________________ Xfce4-commits mailing list [email protected] https://mail.xfce.org/mailman/listinfo/xfce4-commits
