Merge pull request #4461 from Beep6581/custom-working-profiles

added possibility to specify extra working spaces via a json file
This commit is contained in:
Alberto Griggio
2018-03-27 08:34:58 +02:00
committed by GitHub
7 changed files with 409 additions and 53 deletions

View File

@@ -160,7 +160,7 @@ ICMPanel::ICMPanel () : FoldableToolPanel(this, "icm", M("TP_ICM_LABEL")), iunch
wnames = Gtk::manage (new MyComboBoxText ());
wVBox->pack_start (*wnames, Gtk::PACK_SHRINK);
std::vector<Glib::ustring> wpnames = rtengine::ICCStore::getWorkingProfiles();
std::vector<Glib::ustring> wpnames = rtengine::ICCStore::getInstance()->getWorkingProfiles();
for (size_t i = 0; i < wpnames.size(); i++) {
wnames->append (wpnames[i]);