From 2f78ea61b682d87dfaaf9e9da8cf4167f4b53553 Mon Sep 17 00:00:00 2001 From: eidheim Date: Tue, 22 Mar 2016 09:26:55 +0100 Subject: [PATCH] Changed default window width and height in preferences, and save_on_compile_or_run is now true by default --- src/files.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/files.h b/src/files.h index 03575ce..c69c48d 100644 --- a/src/files.h +++ b/src/files.h @@ -8,8 +8,8 @@ const std::string configjson = "{\n" " \"version\": \""+std::string(JUCI_VERSION)+"\",\n" " \"default_window_size\": {\n" -" \"width\": 600,\n" -" \"height\": 400\n" +" \"width\": 800,\n" +" \"height\": 600\n" " },\n" " \"terminal_history_size\": 1000,\n" " \"gtk_theme\": {\n" @@ -130,7 +130,7 @@ const std::string configjson = " \"cmake_command\": \"cmake\",\n" #endif " \"make_command\": \"cmake --build .\",\n" -" \"save_on_compile_or_run\": false\n" +" \"save_on_compile_or_run\": true\n" " },\n" " \"documentation_searches\": {\n" " \"clang\": {\n"