Skip to content
Snippets Groups Projects

Resolves #343 GUI and Frame Refactor

Merged Nicolas Pope requested to merge feature/gui2 into master
Compare and Show latest version
1 file
+ 2
1
Compare changes
  • Side-by-side
  • Inline
@@ -883,10 +883,11 @@ Configurable *ftl::config::configure(int argc, char **argv, const std::string &r
config_restore = std::move(ftl::loadJSON(std::string(FTL_LOCAL_CONFIG_ROOT "/")+cfg_root_str+std::string("_session.json")));
Configurable *rootcfg = nullptr;
rootCFG = rootcfg;
try {
if (!config.contains("$id")) config["$id"] = "ftl://utu.fi";
rootcfg = create<Configurable>(config);
rootCFG = rootcfg;
if (root_str.size() > 0) {
LOG(INFO) << "Setting root to " << root_str;
rootcfg = create<Configurable>(rootcfg, root_str);
Loading