diff options
author | rbuj <[email protected]> | 2020-11-24 18:13:19 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2020-12-06 00:37:17 +0100 |
commit | 24c93c5aae6c939760bc903a5bd73267b3b43d92 (patch) | |
tree | 48766c5e14b40a5e56890e08ff8230da2545ff12 /capplets/keyboard/mate-keyboard-properties.c | |
parent | 514b7d24d8fdae5b73fc7e6d64ff770eb87bc70f (diff) | |
download | mate-control-center-24c93c5aae6c939760bc903a5bd73267b3b43d92.tar.bz2 mate-control-center-24c93c5aae6c939760bc903a5bd73267b3b43d92.tar.xz |
mate-keyboard-properties: Do not use stock icons on ui file
Diffstat (limited to 'capplets/keyboard/mate-keyboard-properties.c')
-rw-r--r-- | capplets/keyboard/mate-keyboard-properties.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/capplets/keyboard/mate-keyboard-properties.c b/capplets/keyboard/mate-keyboard-properties.c index cf2ef62f..b17421cf 100644 --- a/capplets/keyboard/mate-keyboard-properties.c +++ b/capplets/keyboard/mate-keyboard-properties.c @@ -55,7 +55,6 @@ create_dialog (void) { GtkBuilder *dialog; GtkSizeGroup *size_group; - GtkWidget *image; GError *error = NULL; dialog = gtk_builder_new (); @@ -84,12 +83,6 @@ create_dialog (void) gtk_size_group_add_widget (size_group, WID ("cursor_blink_time_scale")); g_object_unref (G_OBJECT (size_group)); - image = gtk_image_new_from_icon_name ("list-add", GTK_ICON_SIZE_BUTTON); - gtk_button_set_image (GTK_BUTTON (WID ("xkb_layouts_add")), image); - - image = gtk_image_new_from_icon_name ("view-refresh", GTK_ICON_SIZE_BUTTON); - gtk_button_set_image (GTK_BUTTON (WID ("xkb_reset_to_defaults")), image); - return dialog; } |