diff options
Diffstat (limited to 'src/eom-plugin-manager.c')
-rw-r--r-- | src/eom-plugin-manager.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/eom-plugin-manager.c b/src/eom-plugin-manager.c index befbea4..c1e063e 100644 --- a/src/eom-plugin-manager.c +++ b/src/eom-plugin-manager.c @@ -835,7 +835,11 @@ 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); +#else gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5); +#endif gtk_box_pack_start (GTK_BOX (pm), label, FALSE, TRUE, 0); |