mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-16 17:45:10 +00:00
GUI: fix wavetable list oversight
This commit is contained in:
parent
49a8f77cf1
commit
f8794ae9a4
1 changed files with 2 additions and 2 deletions
|
@ -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")) {
|
||||||
|
|
Loading…
Reference in a new issue