GUI: fix wavetable list oversight

This commit is contained in:
tildearrow 2022-05-25 23:50:11 -05:00
parent 49a8f77cf1
commit f8794ae9a4

View file

@ -319,11 +319,11 @@ void FurnaceGUI::drawWaveList() {
} }
ImGui::SameLine(); ImGui::SameLine();
if (ImGui::ArrowButton("WaveUp",ImGuiDir_Up)) { if (ImGui::ArrowButton("WaveUp",ImGuiDir_Up)) {
doAction(GUI_ACTION_WAVE_LIST_UP); doAction(GUI_ACTION_WAVE_LIST_MOVE_UP);
} }
ImGui::SameLine(); ImGui::SameLine();
if (ImGui::ArrowButton("WaveDown",ImGuiDir_Down)) { if (ImGui::ArrowButton("WaveDown",ImGuiDir_Down)) {
doAction(GUI_ACTION_WAVE_LIST_DOWN); doAction(GUI_ACTION_WAVE_LIST_MOVE_DOWN);
} }
ImGui::SameLine(); ImGui::SameLine();
if (ImGui::Button(ICON_FA_TIMES "##WaveDelete")) { if (ImGui::Button(ICON_FA_TIMES "##WaveDelete")) {