diff --git a/CMakeLists.txt b/CMakeLists.txt index b14a6d1..b80ac9a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required (VERSION 2.8.8) project(juci) -set(JUCI_VERSION "1.2.1.1") +set(JUCI_VERSION "1.2.1.2") set(CPACK_PACKAGE_NAME "jucipp") set(CPACK_PACKAGE_CONTACT "Ole Christian Eidheim ") diff --git a/src/files.h b/src/files.h index 7d858b7..8893977 100644 --- a/src/files.h +++ b/src/files.h @@ -141,7 +141,7 @@ R"RAW( R"RAW( "close_tab": "w", "window_toggle_split": "", - "clear_console": "c" + "window_clear_terminal": "" }, "project": { "default_build_path_comment": "Use to insert the project top level directory name", diff --git a/src/menu.cc b/src/menu.cc index 69d853c..2f299ca 100644 --- a/src/menu.cc +++ b/src/menu.cc @@ -352,7 +352,7 @@ Menu::Menu() {
_Clear _Console - app.clear_console + app.window_clear_terminal
diff --git a/src/window.cc b/src/window.cc index 4dd54cc..364225d 100644 --- a/src/window.cc +++ b/src/window.cc @@ -1047,7 +1047,7 @@ void Window::set_menu_actions() { menu.add_action("window_toggle_split", [this] { Notebook::get().toggle_split(); }); - menu.add_action("clear_console", [this] { + menu.add_action("window_clear_terminal", [this] { Terminal::get().clear(); }); }