Browse Source

Changed default window width and height in preferences, and save_on_compile_or_run is now true by default

merge-requests/365/head
eidheim 10 years ago
parent
commit
2f78ea61b6
  1. 6
      src/files.h

6
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"

Loading…
Cancel
Save