Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/MacVim/MMFindReplaceController.m
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@ - (void)showWithText:(NSString *)text flags:(int)flags
// Ensure that the window has been loaded by calling this first.
NSWindow *window = [self window];

// Set collection behavior to ensure the dialog appears in the current
// space rather than jumping to another space.
NSWindowCollectionBehavior wcb = window.collectionBehavior;
wcb |= NSWindowCollectionBehaviorMoveToActiveSpace;
[window setCollectionBehavior:wcb];

if (text && [text length] > 0)
[findBox setStringValue:text];

Expand Down