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 5b2209b commit 1ce1cb4Copy full SHA for 1ce1cb4
1 file changed
src/MacVim/MMWindowController.m
@@ -1021,13 +1021,19 @@ - (void)windowDidMove:(NSNotification *)notification
1021
1022
- (void)windowDidResize:(id)sender
1023
{
1024
- if (resizingDueToMove)
1025
- {
+ if (resizingDueToMove) {
1026
resizingDueToMove = NO;
1027
return;
1028
}
1029
1030
- if (!setupDone || fullScreenEnabled) return;
+ if (!setupDone)
+ return;
1031
+
1032
+ // NOTE: We need to update the window frame size for Split View even though
1033
+ // in full-screen on El Capitan or later.
1034
+ if (floor(NSAppKitVersionNumber) <= NSAppKitVersionNumber10_10_Max
1035
+ && fullScreenEnabled)
1036
1037
1038
// NOTE: Since we have no control over when the window may resize (Cocoa
1039
// may resize automatically) we simply set the view to fill the entire
0 commit comments