Skip to content

Commit

Permalink
TestEngine: UI: fixed warning on GCC. (#65)
Browse files Browse the repository at this point in the history
ocornut committed Jan 4, 2025
1 parent 2e2d83a commit a80b256
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion imgui_test_engine/imgui_te_ui.cpp
Original file line number Diff line number Diff line change
@@ -439,7 +439,7 @@ static void ShowTestGroup(ImGuiTestEngine* e, ImGuiTestGroup group, Str* filter)
}

ImGui::TableNextColumn();
if (ImGui::Selectable(test->Category, test == e->UiSelectedTest, ImGuiSelectableFlags_SpanAllColumns | ImGuiSelectableFlags_SelectOnNav))
if (ImGui::Selectable(test->Category, test == e->UiSelectedTest, ImGuiSelectableFlags_SpanAllColumns | (ImGuiSelectableFlags)ImGuiSelectableFlags_SelectOnNav))
select_test = true;

// Double-click to run test, CTRL+Double-click to run GUI function

0 comments on commit a80b256

Please sign in to comment.