From 123c051b771c33ca01bb8d313a9dd54041113161 Mon Sep 17 00:00:00 2001 From: d3rrial Date: Thu, 1 Sep 2016 11:41:08 +0200 Subject: [PATCH] changed clear_console to window_clear_terminal --- CMakeLists.txt | 2 +- src/files.h | 2 +- src/menu.cc | 2 +- src/window.cc | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) 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(); }); }