From 3ae71d7e72dd3929d07d6880e037445fa5275bba Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Mon, 12 Mar 2018 20:47:33 +0100 Subject: [PATCH] Bugfix: properly initialize new config value --- src/lay/lay/layMacroEditorDialog.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lay/lay/layMacroEditorDialog.cc b/src/lay/lay/layMacroEditorDialog.cc index 81c8c6290..897a996cd 100644 --- a/src/lay/lay/layMacroEditorDialog.cc +++ b/src/lay/lay/layMacroEditorDialog.cc @@ -3475,7 +3475,7 @@ public: options.push_back (std::pair (cfg_macro_editor_save_all_on_run, "false")); options.push_back (std::pair (cfg_macro_editor_debugging_enabled, "true")); options.push_back (std::pair (cfg_macro_editor_file_watcher_enabled, "true")); - options.push_back (std::pair (cfg_macro_editor_font_size, "")); + options.push_back (std::pair (cfg_macro_editor_font_size, "0")); options.push_back (std::pair (cfg_macro_editor_font_family, "")); options.push_back (std::pair (cfg_macro_editor_stop_on_exception, "true")); options.push_back (std::pair (cfg_macro_editor_tab_width, "8"));