summaryrefslogtreecommitdiff
path: root/src/file-manager/fm-properties-window.c
diff options
context:
space:
mode:
authorraveit65 <[email protected]>2015-09-26 17:05:23 +0200
committermonsta <[email protected]>2015-10-19 16:31:56 +0300
commit597e229c69cf05e734ce0a08cc8ad1af4b2ebae8 (patch)
tree4a82733244da39d82f29f16c83f18c4222815a33 /src/file-manager/fm-properties-window.c
parent5609227c672d94e54edec26e2b4db5f9e1697e17 (diff)
downloadcaja-597e229c69cf05e734ce0a08cc8ad1af4b2ebae8.tar.bz2
caja-597e229c69cf05e734ce0a08cc8ad1af4b2ebae8.tar.xz
GTK3: do not use deprecated gtk_misc_set_alignment
Diffstat (limited to 'src/file-manager/fm-properties-window.c')
-rw-r--r--src/file-manager/fm-properties-window.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/file-manager/fm-properties-window.c b/src/file-manager/fm-properties-window.c
index dcb9374e..6edb01ee 100644
--- a/src/file-manager/fm-properties-window.c
+++ b/src/file-manager/fm-properties-window.c
@@ -1397,7 +1397,11 @@ attach_label (GtkTable *table,
if (bold) {
eel_gtk_label_make_bold (GTK_LABEL (label_field));
}
+#if GTK_CHECK_VERSION (3, 14, 0)
+ gtk_widget_set_halign (label_field, right_aligned ? 1 :GTK_ALIGN_START);
+#else
gtk_misc_set_alignment (GTK_MISC (label_field), right_aligned ? 1 : 0, 0.5);
+#endif
gtk_widget_show (label_field);
gtk_table_attach (table, label_field,
column, column + 1,