summaryrefslogtreecommitdiff
path: root/capplets/windows/mate-metacity-support.c
diff options
context:
space:
mode:
authormonsta <[email protected]>2016-01-14 17:23:35 +0300
committermonsta <[email protected]>2016-01-15 13:26:42 +0300
commit7865afb847c54c76adfb190cdedf11540f6614e7 (patch)
tree8253cd4c31d062aa580879a9ec7135af24a91d79 /capplets/windows/mate-metacity-support.c
parenta8899801fa1d25346f4d7da783be758763f760c8 (diff)
downloadmate-control-center-7865afb847c54c76adfb190cdedf11540f6614e7.tar.bz2
mate-control-center-7865afb847c54c76adfb190cdedf11540f6614e7.tar.xz
[GTK+3] windows: fix deprecated usage of GtkMisc
Diffstat (limited to 'capplets/windows/mate-metacity-support.c')
-rw-r--r--capplets/windows/mate-metacity-support.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/capplets/windows/mate-metacity-support.c b/capplets/windows/mate-metacity-support.c
index 554f5860..2a30cd05 100644
--- a/capplets/windows/mate-metacity-support.c
+++ b/capplets/windows/mate-metacity-support.c
@@ -52,7 +52,12 @@ mate_metacity_config_tool ()
widget = gtk_label_new (str);
g_free (str);
gtk_label_set_use_markup (GTK_LABEL (widget), TRUE);
- gtk_misc_set_alignment (GTK_MISC (widget), 0, 0.5);
+#if GTK_CHECK_VERSION (3, 0, 0)
+ gtk_widget_set_halign (widget, GTK_ALIGN_START);
+ gtk_widget_set_valign (widget, GTK_ALIGN_CENTER);
+#else
+ gtk_misc_set_alignment (GTK_MISC (widget), 0.0, 0.5);
+#endif
gtk_box_pack_start (GTK_BOX (vbox), widget, FALSE, FALSE, 0);
widget = gtk_check_button_new_with_label (_("Enable software _compositing window manager"));