From f8794ae9a462d8f482ee0bd9680ac3e54ea56dff Mon Sep 17 00:00:00 2001 From: tildearrow Date: Wed, 25 May 2022 23:50:11 -0500 Subject: [PATCH] GUI: fix wavetable list oversight --- src/gui/dataList.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/dataList.cpp b/src/gui/dataList.cpp index 5829e2c3..4dfc9f28 100644 --- a/src/gui/dataList.cpp +++ b/src/gui/dataList.cpp @@ -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")) {