From 27778bff5af6d5c49b0556e8d523f4a6fde412e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Francisco=20Jos=C3=A9=20Garc=C3=ADa=20Garc=C3=ADa?= Date: Wed, 1 Sep 2021 19:21:33 +0200 Subject: [PATCH] fix postfx selection --- companion/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/companion/main.cpp b/companion/main.cpp index a8887cf..e28b463 100644 --- a/companion/main.cpp +++ b/companion/main.cpp @@ -221,7 +221,7 @@ int main(int argc, char *argv[]) { ImGui::TextColored(ImVec4(255, 255, 0, 255), "Misc"); ImGui::Text("Language:"); ImGui::SameLine(); - if (ImGui::BeginCombo("##combo2", LanguageName[options.lang])) { + if (ImGui::BeginCombo("##combo3", LanguageName[options.lang])) { for (int n = 0; n < LANGUAGES_NUM; n++) { bool is_selected = options.lang == n; if (ImGui::Selectable(LanguageName[n], is_selected))