summaryrefslogtreecommitdiff
path: root/capplets
diff options
context:
space:
mode:
authorraveit65 <[email protected]>2017-03-09 07:49:12 +0100
committerraveit65 <[email protected]>2017-03-13 17:42:35 +0100
commit237ca84ead7b65d7815c233161e0ecac2e4e1e93 (patch)
tree2c7654dca5f269f83ad0437362ad36bcbe162deb /capplets
parent4197690a085c3dc24e1c770088f0700b68a040ce (diff)
downloadmate-control-center-237ca84ead7b65d7815c233161e0ecac2e4e1e93.tar.bz2
mate-control-center-237ca84ead7b65d7815c233161e0ecac2e4e1e93.tar.xz
keyboard-properties-xkbot: avoid deprecated GtkAlignmentv1.18.0
Diffstat (limited to 'capplets')
-rw-r--r--capplets/keyboard/mate-keyboard-properties-xkbot.c14
1 files changed, 9 insertions, 5 deletions
diff --git a/capplets/keyboard/mate-keyboard-properties-xkbot.c b/capplets/keyboard/mate-keyboard-properties-xkbot.c
index 6f59498a..5be80c2e 100644
--- a/capplets/keyboard/mate-keyboard-properties-xkbot.c
+++ b/capplets/keyboard/mate-keyboard-properties-xkbot.c
@@ -304,7 +304,7 @@ static void
xkb_options_add_group (XklConfigRegistry * config_registry,
XklConfigItem * config_item, GtkBuilder * dialog)
{
- GtkWidget *align, *vbox, *option_check;
+ GtkWidget *vbox, *option_check;
gboolean allow_multiple_selection =
GPOINTER_TO_INT (g_object_get_data (G_OBJECT (config_item),
XCI_PROP_ALLOW_MULTIPLE_SELECTION));
@@ -325,11 +325,15 @@ xkb_options_add_group (XklConfigRegistry * config_registry,
g_strdup (config_item->name), g_free);
g_free (titlemarkup);
- align = gtk_alignment_new (0, 0, 1, 1);
- gtk_alignment_set_padding (GTK_ALIGNMENT (align), 6, 12, 12, 0);
vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 6);
- gtk_container_add (GTK_CONTAINER (align), vbox);
- gtk_container_add (GTK_CONTAINER (current_expander), align);
+ gtk_widget_set_halign (vbox, GTK_ALIGN_FILL);
+ gtk_widget_set_valign (vbox, GTK_ALIGN_START);
+ gtk_widget_set_hexpand (vbox, TRUE);
+ gtk_widget_set_vexpand (vbox, TRUE);
+ gtk_widget_set_margin_top (vbox, 6);
+ gtk_widget_set_margin_bottom (vbox, 12);
+ gtk_widget_set_margin_start (vbox, 12);
+ gtk_container_add (GTK_CONTAINER (current_expander), vbox);
current_multi_select = (gboolean) allow_multiple_selection;
current_radio_group = NULL;