summaryrefslogtreecommitdiff
path: root/src/eom-plugin-manager.c
diff options
context:
space:
mode:
authorWolfgang Ulbrich <[email protected]>2016-01-25 19:50:59 +0100
committerWolfgang Ulbrich <[email protected]>2016-01-25 19:54:06 +0100
commitd4ae3f8f09f99a01196e0776869b33e487797d1f (patch)
tree31eceb983e9ddbaeb2087d2635f899089083cdb7 /src/eom-plugin-manager.c
parentdcd9671f4eeafcbabde5218f4c71e7b310d8596d (diff)
downloadeom-d4ae3f8f09f99a01196e0776869b33e487797d1f.tar.bz2
eom-d4ae3f8f09f99a01196e0776869b33e487797d1f.tar.xz
GTK3: fix previous GtkMisc deprecation commit
Diffstat (limited to 'src/eom-plugin-manager.c')
-rw-r--r--src/eom-plugin-manager.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/eom-plugin-manager.c b/src/eom-plugin-manager.c
index c1e063e..270f8d6 100644
--- a/src/eom-plugin-manager.c
+++ b/src/eom-plugin-manager.c
@@ -835,8 +835,8 @@ eom_plugin_manager_init (EomPluginManager *pm)
gtk_label_set_justify (GTK_LABEL (label), GTK_JUSTIFY_LEFT);
-#if GTK_CHECK_VERSION (3, 14, 0)
- gtk_widget_set_halign (label, GTK_ALIGN_START);
+#if GTK_CHECK_VERSION (3, 16, 0)
+ gtk_label_set_xalign (GTK_LABEL (label), 0.0);
#else
gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5);
#endif