macOS fix from #3589

This commit is contained in:
Morgan Hardwood 2017-01-06 16:44:58 +01:00
parent d19fca2b5f
commit c99bd6d211

View File

@ -225,8 +225,10 @@ private:
ConnectionBlocker profileBlocker (softproofConn); ConnectionBlocker profileBlocker (softproofConn);
softProof.set_active(false); softProof.set_active(false);
softProof.set_sensitive(false); softProof.set_sensitive(false);
#if !defined(__APPLE__) // monitor profile not supported on apple
} else { } else {
softProof.set_sensitive(profileBox.get_active_row_number () > 0); softProof.set_sensitive(profileBox.get_active_row_number () > 0);
#endif
} }
spGamutCheck.set_sensitive(softProof.get_sensitive() && softProof.get_active()); spGamutCheck.set_sensitive(softProof.get_sensitive() && softProof.get_active());