Skip to content

Commit

Permalink
fix postfx selection
Browse files Browse the repository at this point in the history
  • Loading branch information
frangarcj committed Sep 1, 2021
1 parent 7934e04 commit 27778bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion companion/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down

0 comments on commit 27778bf

Please sign in to comment.