universal-access: Don't use gtk_widget_show_all

It is removed in GTK+ 4
This commit is contained in:
Robert Ancell 2018-10-11 15:57:20 +13:00 committed by Georges Basile Stavracas Neto
parent 5368c1cb71
commit 24d495d0f5

View file

@ -368,8 +368,10 @@ cursor_size_setup (CcUaPanel *self)
cursor_image_name = g_strdup_printf ("/org/gnome/control-center/universal-access/left_ptr_%dpx.png", cursor_sizes[i]);
image = gtk_image_new_from_resource (cursor_image_name);
gtk_widget_show (image);
button = gtk_radio_button_new_from_widget (GTK_RADIO_BUTTON (last_radio_button));
gtk_widget_show (button);
last_radio_button = button;
gtk_toggle_button_set_mode (GTK_TOGGLE_BUTTON (button), FALSE);
g_object_set_data (G_OBJECT (button), "cursor-size", GUINT_TO_POINTER (cursor_sizes[i]));
@ -384,8 +386,6 @@ cursor_size_setup (CcUaPanel *self)
if (current_cursor_size == cursor_sizes[i])
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (button), TRUE);
}
gtk_widget_show_all (self->cursor_size_grid);
}
/* seeing section */