diff options
author | Wolfgang Ulbrich <[email protected]> | 2016-01-23 00:04:15 +0100 |
---|---|---|
committer | monsta <[email protected]> | 2016-01-25 16:53:59 +0300 |
commit | 1241ff234a8ec46542e97e48a6298b78c9a0d2b5 (patch) | |
tree | 1a23419da4aea0392649d03888b3cc2621011851 /src/file-manager/fm-properties-window.c | |
parent | 130906c9182c71a6049eca472f8d3b91804124cf (diff) | |
download | caja-1241ff234a8ec46542e97e48a6298b78c9a0d2b5.tar.bz2 caja-1241ff234a8ec46542e97e48a6298b78c9a0d2b5.tar.xz |
GTK3: fix deprecated GtkMisc
Diffstat (limited to 'src/file-manager/fm-properties-window.c')
-rw-r--r-- | src/file-manager/fm-properties-window.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/file-manager/fm-properties-window.c b/src/file-manager/fm-properties-window.c index 096283dd..a3fc7278 100644 --- a/src/file-manager/fm-properties-window.c +++ b/src/file-manager/fm-properties-window.c @@ -1464,8 +1464,8 @@ attach_label (GtkTable *table, eel_gtk_label_make_bold (GTK_LABEL (label_field)); } #endif -#if GTK_CHECK_VERSION (3, 14, 0) - gtk_widget_set_halign (label_field, GTK_ALIGN_START); +#if GTK_CHECK_VERSION (3, 16, 0) + gtk_label_set_xalign (GTK_LABEL (label_field), 0); #else gtk_misc_set_alignment (GTK_MISC (label_field), right_aligned ? 1 : 0, 0.5); #endif |