From accb2a11903ff31cabff95965db27a3a9fbeec6f Mon Sep 17 00:00:00 2001 From: Pascal Engeler <engelerp@phys.ethz.ch> Date: Mon, 9 Aug 2021 22:02:35 +0200 Subject: [PATCH] Changed button labels --- src/gui_handler.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/gui_handler.cpp b/src/gui_handler.cpp index dd2d2ac..10a28e8 100644 --- a/src/gui_handler.cpp +++ b/src/gui_handler.cpp @@ -257,7 +257,7 @@ void GuiHandler::draw_gui_(Toolbox& tb) { } ImGui::Dummy(ImVec2(40, 0)); ImGui::SameLine(); - ImGui::Text("Fingern"); + ImGui::Text("Spielen"); if (tb.m_state == static_cast<int>(MSTATE::DRAW)) { if (ImGui::ImageButton((void*)(btex_draw_on_), ImVec2(140, 140))) { tb.m_state = static_cast<int>(MSTATE::DRAW); @@ -281,7 +281,7 @@ void GuiHandler::draw_gui_(Toolbox& tb) { } ImGui::Dummy(ImVec2(40, 0)); ImGui::SameLine(); - ImGui::Text("Malen"); + ImGui::Text("Zeichnen"); ImGui::SameLine(); ImGui::Dummy(ImVec2(100, 0)); ImGui::SameLine(); @@ -397,12 +397,12 @@ void GuiHandler::draw_gui_(Toolbox& tb) { } ImGui::SameLine(); if (tb.g_state != static_cast<int>(GSTATE::FREEZE)) { - if (ImGui::Button("FREEZE", ImVec2(140, 30))) { + if (ImGui::Button("STOPP", ImVec2(140, 30))) { tb.g_state = static_cast<int>(GSTATE::FREEZE); } } else { - if (ImGui::Button("RUN", ImVec2(140, 30))) { + if (ImGui::Button("START", ImVec2(140, 30))) { tb.g_state = static_cast<int>(GSTATE::RUN); } } -- GitLab