diff --git a/src/gui/editControls.cpp b/src/gui/editControls.cpp index 288593bd2..6c5e6d266 100644 --- a/src/gui/editControls.cpp +++ b/src/gui/editControls.cpp @@ -188,25 +188,16 @@ void FurnaceGUI::drawMobileControls() { if (ImGui::Button(ICON_FA_PLAY "##Play",buttonSize)) { play(); } - if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Play"); - } popToggleColors(); if (portrait) ImGui::SameLine(); if (ImGui::Button(ICON_FA_STOP "##Stop",buttonSize)) { stop(); } - if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Stop"); - } if (portrait) ImGui::SameLine(); if (ImGui::Button(ICON_FA_ARROW_DOWN "##StepOne",buttonSize)) { e->stepOne(cursor.y); pendingStepUpdate=true; } - if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Step one row"); - } bool repeatPattern=e->getRepeatPattern(); pushToggleColors(repeatPattern); @@ -214,9 +205,6 @@ void FurnaceGUI::drawMobileControls() { if (ImGui::Button(ICON_FA_REPEAT "##RepeatPattern",buttonSize)) { e->setRepeatPattern(!repeatPattern); } - if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Repeat pattern"); - } popToggleColors(); pushToggleColors(edit); @@ -224,9 +212,6 @@ void FurnaceGUI::drawMobileControls() { if (ImGui::Button(ICON_FA_CIRCLE "##Edit",buttonSize)) { edit=!edit; } - if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Edit"); - } popToggleColors(); bool metro=e->getMetronome(); @@ -235,9 +220,6 @@ void FurnaceGUI::drawMobileControls() { if (ImGui::Button(ICON_FA_BELL_O "##Metronome",buttonSize)) { e->setMetronome(!metro); } - if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Metronome"); - } popToggleColors(); } if (ImGui::IsWindowFocused(ImGuiFocusedFlags_ChildWindows)) curWindow=GUI_WINDOW_EDIT_CONTROLS;