Skip to content

Commit ed08f5e

Browse files
committed
[FIX] : fix compilation with exploration keys enabled (#200)
1 parent 7a806e8 commit ed08f5e

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

ImGuiFileDialog.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3336,10 +3336,10 @@ bool IGFD::KeyExplorerFeature::m_LocateItem_Loop(FileDialogInternal& vFileDialog
33363336
{
33373337
if (fdi.dLGDirectoryMode) // directory chooser
33383338
{
3339-
fdi.SelectFileName(vFileDialogInternal, infos_ptr);
3339+
fdi.SelectFileName(infos_ptr);
33403340
}
33413341
} else {
3342-
fdi.SelectFileName(vFileDialogInternal, infos_ptr);
3342+
fdi.SelectFileName(infos_ptr);
33433343
}
33443344

33453345
found = true;
@@ -3462,10 +3462,10 @@ void IGFD::KeyExplorerFeature::m_ExploreWithkeys(FileDialogInternal& vFileDialog
34623462
}
34633463
} else // directory chooser
34643464
{
3465-
fdi.SelectFileName(vFileDialogInternal, infos_ptr);
3465+
fdi.SelectFileName(infos_ptr);
34663466
}
34673467
} else {
3468-
fdi.SelectFileName(vFileDialogInternal, infos_ptr);
3468+
fdi.SelectFileName(infos_ptr);
34693469

34703470
if (enterInDirectory) {
34713471
vFileDialogInternal.isOk = true;

0 commit comments

Comments
 (0)