GUI: fix wavetable list oversight

This commit is contained in:
tildearrow 2022-05-25 23:50:11 -05:00
parent 49a8f77cf1
commit f8794ae9a4
1 changed files with 2 additions and 2 deletions

View File

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