From 06f259586192a4e044d93c9469a42b11d14a85a6 Mon Sep 17 00:00:00 2001 From: Eknous <61464512+Eknous-P@users.noreply.github.com> Date: Mon, 28 Aug 2023 10:00:32 +0400 Subject: [PATCH] formatting --- src/gui/dataList.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/dataList.cpp b/src/gui/dataList.cpp index 22c080c1..de5f3515 100644 --- a/src/gui/dataList.cpp +++ b/src/gui/dataList.cpp @@ -173,7 +173,7 @@ void FurnaceGUI::waveListItem(int i, float* wavePreview, int dir, int asset) { } if (wave->len>0) wavePreview[wave->len]=wave->data[wave->len-1]; ImGui::PushStyleVar(ImGuiStyleVar_SelectableTextAlign, ImVec2(0,0.5f)); - if (ImGui::Selectable(fmt::sprintf(" %d##_WAVE%d\n",i,i).c_str(),curWave==i, 0, ImVec2(0,23*dpiScale))) {//i didnt think that the 0 would work, but it does + if (ImGui::Selectable(fmt::sprintf(" %d##_WAVE%d\n",i,i).c_str(),curWave==i,0,ImVec2(0,23*dpiScale))) { // i didnt think that the 0 would work, but it does curWave=i; lastAssetType=1; }