From 6a1ccb9b152e2feaa1ebac75a2c6cf6f8a673168 Mon Sep 17 00:00:00 2001 From: Hombre Date: Mon, 2 Jan 2017 02:51:54 +0100 Subject: [PATCH] Bugfix backported from gtk3 branch, related to OSX printer profile --- rtgui/preferences.cc | 2 -- 1 file changed, 2 deletions(-) diff --git a/rtgui/preferences.cc b/rtgui/preferences.cc index 265af04bb..be5f68d1a 100644 --- a/rtgui/preferences.cc +++ b/rtgui/preferences.cc @@ -796,10 +796,8 @@ Gtk::Widget* Preferences::getColorManagementPanel () Gtk::Table* coltp = Gtk::manage (new Gtk::Table (2, 2)); row = 0; -#if !defined(__APPLE__) // monitor profile not supported on apple coltp->attach (*pplabel, 0, 1, row, row + 1, Gtk::FILL, Gtk::SHRINK, 2, 2); coltp->attach (*prtProfile, 1, 2, row, row + 1, Gtk::EXPAND | Gtk::FILL, Gtk::SHRINK, 2, 2); -#endif ++row; coltp->attach (*pilabel, 0, 1, row, row + 1, Gtk::FILL, Gtk::SHRINK, 2, 2); coltp->attach (*prtIntent, 1, 2, row, row + 1, Gtk::EXPAND | Gtk::FILL, Gtk::SHRINK, 2, 2);