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 61c81eb commit 70d82d3Copy full SHA for 70d82d3
src/ui/theme-viewer.c
@@ -253,11 +253,8 @@ dialog_contents (void)
253
gtk_button_box_set_layout (GTK_BUTTON_BOX (action_area),
254
GTK_BUTTONBOX_END);
255
256
- button = GTK_WIDGET (g_object_new (GTK_TYPE_BUTTON,
257
- "label", "gtk-ok",
258
- "use-stock", TRUE,
259
- "use-underline", TRUE,
260
- NULL));
+ button = gtk_button_new_with_mnemonic (_("_OK"));
+ gtk_button_set_image (GTK_BUTTON (button), gtk_image_new_from_icon_name ("gtk-ok", GTK_ICON_SIZE_BUTTON));
261
262
gtk_box_pack_end (GTK_BOX (action_area),
263
button,
0 commit comments