You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Much thanks for your work! Just wanted to report a bug in nfd_cocoa.m.
The NFD_OpenDialogMultiple and NFD_SaveDialog routines are not resetting the focus to the main window when they finish. NFD_OpenDialog has no such problem because it uses these two calls:
Much thanks for your work! Just wanted to report a bug in nfd_cocoa.m.
The NFD_OpenDialogMultiple and NFD_SaveDialog routines are not resetting the focus to the main window when they finish. NFD_OpenDialog has no such problem because it uses these two calls:
NSWindow *keyWindow = [[NSApplication sharedApplication] keyWindow];
...
[keyWindow makeKeyAndOrderFront:nil];
To fix the bug just add these calls to the same places in NFD_OpenDialogMultiple and NFD_SaveDialog.
The text was updated successfully, but these errors were encountered: