From f53133d9a33b1a3390cca82b3885a6788b42e761 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Tue, 22 Oct 2019 22:58:35 -0400 Subject: [PATCH] xfce4-hdaps-dialogs.c: drop obsolete GTK_DIALOG_NO_SEPARATOR flag. While creating our main dialog box, we used to pass in the GTK_DIALOG_NO_SEPARATOR flag to omit the separator between the main vbox and the action area. I no longer remember what real impact this had, which is good I guess because that flag doesn't exist in gtk+-3.x. Other XFCE panel plugins have fixed this by deleting the flag, and that seems like a fine solution to me. --- panel-plugin/xfce4-hdaps-dialogs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/panel-plugin/xfce4-hdaps-dialogs.c b/panel-plugin/xfce4-hdaps-dialogs.c index 7a4f737..b6da7cb 100644 --- a/panel-plugin/xfce4-hdaps-dialogs.c +++ b/panel-plugin/xfce4-hdaps-dialogs.c @@ -101,7 +101,7 @@ void hdaps_configure(XfcePanelPlugin *plugin, /* Create the dialog */ dialog = xfce_titled_dialog_new_with_buttons(_("Hdaps Plugin"), GTK_WINDOW (gtk_widget_get_toplevel (GTK_WIDGET (plugin))), - GTK_DIALOG_DESTROY_WITH_PARENT | GTK_DIALOG_NO_SEPARATOR, + GTK_DIALOG_DESTROY_WITH_PARENT, GTK_STOCK_HELP, GTK_RESPONSE_HELP, GTK_STOCK_SAVE, GTK_RESPONSE_OK, GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL, -- 2.43.2