diff --git a/src/gui_handler.cpp b/src/gui_handler.cpp index dd2d2ac294c6e0f8629a9cf2f7dd81267de3aeeb..10a28e8bbecb2310e6cb54f56c2c7d0609141948 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); } }