Bugfix: properly initialize new config value

This commit is contained in:
Matthias Koefferlein 2018-03-12 20:47:33 +01:00
parent 802237141b
commit 3ae71d7e72
1 changed files with 1 additions and 1 deletions

View File

@ -3475,7 +3475,7 @@ public:
options.push_back (std::pair<std::string, std::string> (cfg_macro_editor_save_all_on_run, "false"));
options.push_back (std::pair<std::string, std::string> (cfg_macro_editor_debugging_enabled, "true"));
options.push_back (std::pair<std::string, std::string> (cfg_macro_editor_file_watcher_enabled, "true"));
options.push_back (std::pair<std::string, std::string> (cfg_macro_editor_font_size, ""));
options.push_back (std::pair<std::string, std::string> (cfg_macro_editor_font_size, "0"));
options.push_back (std::pair<std::string, std::string> (cfg_macro_editor_font_family, ""));
options.push_back (std::pair<std::string, std::string> (cfg_macro_editor_stop_on_exception, "true"));
options.push_back (std::pair<std::string, std::string> (cfg_macro_editor_tab_width, "8"));