We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6365649 commit 61c81ebCopy full SHA for 61c81eb
src/ui/theme-viewer.c
@@ -253,7 +253,12 @@ dialog_contents (void)
253
gtk_button_box_set_layout (GTK_BUTTON_BOX (action_area),
254
GTK_BUTTONBOX_END);
255
256
- button = gtk_button_new_from_stock (GTK_STOCK_OK);
+ button = GTK_WIDGET (g_object_new (GTK_TYPE_BUTTON,
257
+ "label", "gtk-ok",
258
+ "use-stock", TRUE,
259
+ "use-underline", TRUE,
260
+ NULL));
261
+
262
gtk_box_pack_end (GTK_BOX (action_area),
263
button,
264
FALSE, TRUE, 0);
0 commit comments