From dddcae70839f9259fb863b03a3c07b35e7e218d1 Mon Sep 17 00:00:00 2001 From: Pascal Engeler <engelerp@phys.ethz.ch> Date: Tue, 17 Aug 2021 11:20:40 +0200 Subject: [PATCH] changed RESET to NEUSTART, as per Uli's request --- src/gui_handler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui_handler.cpp b/src/gui_handler.cpp index 39c1f37..e3bad0a 100644 --- a/src/gui_handler.cpp +++ b/src/gui_handler.cpp @@ -628,7 +628,7 @@ void GuiHandler::draw_gui_ft_(Toolbox& tb) { //RESET and START / STOPP ImGui::Dummy(ImVec2(space_left_normal, 0)); ImGui::SameLine(); - if (ImGui::Button("RESET", ImVec2(button_width, button_height))) { + if (ImGui::Button("NEUSTART", ImVec2(button_width, button_height))) { /*If any of this changes, then also change TimeoutHandler::update!*/ tb.source_frequency = 5.f; /*TODO: If initial frequency changes, this must be adapted*/ tb.g_state = static_cast<int>(GSTATE::RUN); -- GitLab