From 4c20b1f4af1928d80467833b9f93cbb0ea26ca71 Mon Sep 17 00:00:00 2001 From: Morgan Hardwood Date: Fri, 6 Jan 2017 20:26:14 +0100 Subject: [PATCH] GTK3 compilation fix for macOS, closes #3589 --- rtgui/preferences.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rtgui/preferences.cc b/rtgui/preferences.cc index bd91d3106..15c6e60c8 100644 --- a/rtgui/preferences.cc +++ b/rtgui/preferences.cc @@ -746,7 +746,7 @@ Gtk::Widget* Preferences::getColorManagementPanel () int row = 0; gmonitor->attach (*mplabel, 0, row, 1, 1); #if defined(__APPLE__) // monitor profile not supported on apple - Gtk::Label *osxwarn = Gtk::manage (new Gtk::Label (M("PREFERENCES_MONPROFILE_WARNOSX"), Gtk::ALIGN_LEFT)); + Gtk::Label *osxwarn = Gtk::manage (new Gtk::Label (M("PREFERENCES_MONPROFILE_WARNOSX"), Gtk::ALIGN_START)); setExpandAlignProperties(osxwarn, false, false, Gtk::ALIGN_CENTER, Gtk::ALIGN_CENTER); gmonitor->attach (*osxwarn, 1, row, 1, 1); #else