diff --git a/src/gui/dataList.cpp b/src/gui/dataList.cpp index 86de5a03..1506c5ff 100644 --- a/src/gui/dataList.cpp +++ b/src/gui/dataList.cpp @@ -504,7 +504,7 @@ void FurnaceGUI::drawInsList(bool asChild) { } ImGui::SameLine(); pushDestColor(); - if (ImGui::Button(ICON_FA_MINUS "##InsDelete")) { + if (ImGui::Button(ICON_FA_TIMES "##InsDelete")) { if (settings.unifiedDataView) { switch (lastAssetType) { case 0: @@ -749,7 +749,7 @@ void FurnaceGUI::drawWaveList(bool asChild) { } ImGui::SameLine(); pushDestColor(); - if (ImGui::Button(ICON_FA_MINUS "##WaveDelete")) { + if (ImGui::Button(ICON_FA_TIMES "##WaveDelete")) { doAction(GUI_ACTION_WAVE_LIST_DELETE); } popDestColor(); @@ -901,7 +901,7 @@ void FurnaceGUI::drawSampleList(bool asChild) { } ImGui::SameLine(); pushDestColor(); - if (ImGui::Button(ICON_FA_MINUS "##SampleDelete")) { + if (ImGui::Button(ICON_FA_TIMES "##SampleDelete")) { doAction(GUI_ACTION_SAMPLE_LIST_DELETE); } popDestColor(); diff --git a/src/gui/findReplace.cpp b/src/gui/findReplace.cpp index b2dcc0c1..40e259eb 100644 --- a/src/gui/findReplace.cpp +++ b/src/gui/findReplace.cpp @@ -812,7 +812,7 @@ void FurnaceGUI::drawFindReplace() { ImGui::TableNextRow(); ImGui::TableNextColumn(); pushDestColor(); - if (ImGui::Button(ICON_FA_TRASH "##DelQuery")) { + if (ImGui::Button(ICON_FA_MINUS "##DelQuery")) { eraseIndex=index; } popDestColor(); diff --git a/src/gui/grooves.cpp b/src/gui/grooves.cpp index db709ce0..eee8db56 100644 --- a/src/gui/grooves.cpp +++ b/src/gui/grooves.cpp @@ -123,7 +123,7 @@ void FurnaceGUI::drawGrooves() { ImGui::TableNextColumn(); pushDestColor(); - String grooveID=fmt::sprintf(ICON_FA_MINUS "##GRR%d",index); + String grooveID=fmt::sprintf(ICON_FA_TIMES "##GRR%d",index); if (ImGui::Button(grooveID.c_str())) { delGroove=index; } diff --git a/src/gui/insEdit.cpp b/src/gui/insEdit.cpp index f6066d68..d0029589 100644 --- a/src/gui/insEdit.cpp +++ b/src/gui/insEdit.cpp @@ -4334,7 +4334,7 @@ void FurnaceGUI::drawInsEdit() { } ImGui::SameLine(); pushDestColor(); - if (ImGui::Button(ICON_FA_MINUS "##HWCmdDel")) { + if (ImGui::Button(ICON_FA_TIMES "##HWCmdDel")) { for (int j=i; jgb.hwSeqLen-1; j++) { ins->gb.hwSeq[j].cmd=ins->gb.hwSeq[j+1].cmd; ins->gb.hwSeq[j].data=ins->gb.hwSeq[j+1].data; diff --git a/src/gui/sysManager.cpp b/src/gui/sysManager.cpp index 24dfdbfd..ad71e0e8 100644 --- a/src/gui/sysManager.cpp +++ b/src/gui/sysManager.cpp @@ -103,7 +103,7 @@ void FurnaceGUI::drawSysManager() { ImGui::SameLine(); ImGui::BeginDisabled(e->song.systemLen<=1); pushDestColor(); - if (ImGui::Button(ICON_FA_MINUS "##SysRemove")) { + if (ImGui::Button(ICON_FA_TIMES "##SysRemove")) { sysToDelete=i; showWarning("Are you sure you want to remove this chip?",GUI_WARN_SYSTEM_DEL); }