Add missing noundo and help_button classes
This commit is contained in:
parent
49957c95d1
commit
3627c75e0b
3 changed files with 15 additions and 0 deletions
|
@ -480,6 +480,11 @@ adblock_get_preferences_dialog (MidoriExtension* extension)
|
|||
GTK_STOCK_CLOSE, GTK_RESPONSE_CLOSE,
|
||||
#endif
|
||||
NULL);
|
||||
#if GTK_CHECK_VERSION (3, 0, 0)
|
||||
gtk_style_context_add_class (gtk_widget_get_style_context (
|
||||
gtk_dialog_get_widget_for_response (GTK_DIALOG (dialog),
|
||||
GTK_RESPONSE_HELP)), "help_button");
|
||||
#endif
|
||||
content_area = gtk_dialog_get_content_area (GTK_DIALOG (dialog));
|
||||
g_signal_connect (dialog, "destroy",
|
||||
G_CALLBACK (gtk_widget_destroyed), &dialog);
|
||||
|
|
|
@ -4752,6 +4752,11 @@ _action_clear_private_data_activate (GtkAction* action,
|
|||
GTK_DIALOG_DESTROY_WITH_PARENT | GTK_DIALOG_NO_SEPARATOR,
|
||||
GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
|
||||
_("_Clear private data"), GTK_RESPONSE_ACCEPT, NULL);
|
||||
#if GTK_CHECK_VERSION (3, 0, 0)
|
||||
gtk_style_context_add_class (gtk_widget_get_style_context (
|
||||
gtk_dialog_get_widget_for_response (GTK_DIALOG (dialog),
|
||||
GTK_RESPONSE_ACCEPT)), "noundo");
|
||||
#endif
|
||||
content_area = gtk_dialog_get_content_area (GTK_DIALOG (dialog));
|
||||
gtk_window_set_skip_taskbar_hint (GTK_WINDOW (dialog), FALSE);
|
||||
screen = gtk_widget_get_screen (GTK_WIDGET (browser));
|
||||
|
|
|
@ -1305,6 +1305,11 @@ midori_search_action_get_dialog (MidoriSearchAction* search_action)
|
|||
GTK_STOCK_CLOSE, GTK_RESPONSE_CLOSE,
|
||||
#endif
|
||||
NULL);
|
||||
#if GTK_CHECK_VERSION (3, 0, 0)
|
||||
gtk_style_context_add_class (gtk_widget_get_style_context (
|
||||
gtk_dialog_get_widget_for_response (GTK_DIALOG (dialog),
|
||||
GTK_RESPONSE_HELP)), "help_button");
|
||||
#endif
|
||||
g_signal_connect (dialog, "destroy",
|
||||
G_CALLBACK (gtk_widget_destroyed), &search_action->dialog);
|
||||
gtk_window_set_icon_name (GTK_WINDOW (dialog), GTK_STOCK_PROPERTIES);
|
||||
|
|
Loading…
Reference in a new issue