We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90a35b0 commit 2917cd9Copy full SHA for 2917cd9
1 file changed
ImGuiFileDialog.cpp
@@ -2341,7 +2341,7 @@ namespace IGFD
2341
if (!vInfos.use_count())
2342
return;
2343
2344
- if (ImGui::GetIO().KeyCtrl)
+ if (ImGui::IsKeyDown(ImGuiMod_Ctrl))
2345
{
2346
if (puDLGcountSelectionMax == 0) // infinite selection
2347
@@ -2369,7 +2369,7 @@ namespace IGFD
2369
}
2370
2371
2372
- else if (ImGui::GetIO().KeyShift)
+ else if (ImGui::IsKeyDown(ImGuiMod_Shift))
2373
2374
if (puDLGcountSelectionMax != 1)
2375
0 commit comments