File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1227,15 +1227,6 @@ - (void)windowDidEnterFullScreen:(NSNotification *)notification
12271227 }
12281228}
12291229
1230- - (void )windowDidExitFullScreen : (NSNotification *)notification
1231- {
1232- if (floor (NSAppKitVersionNumber ) > NSAppKitVersionNumber10_10_Max ) {
1233- // NOTE: On El Capitan, we need to redraw the view when leaving
1234- // full-screen by moving the window out from Split View.
1235- [vimController sendMessage: BackingPropertiesChangedMsgID data: nil ];
1236- }
1237- }
1238-
12391230- (void )windowDidFailToEnterFullScreen : (NSWindow *)window
12401231{
12411232 // NOTE: This message can be called without
@@ -1304,6 +1295,15 @@ - (void)windowWillExitFullScreen:(NSNotification *)notification
13041295 }
13051296}
13061297
1298+ - (void )windowDidExitFullScreen : (NSNotification *)notification
1299+ {
1300+ if (floor (NSAppKitVersionNumber ) > NSAppKitVersionNumber10_10_Max ) {
1301+ // NOTE: On El Capitan, we need to redraw the view when leaving
1302+ // full-screen by moving the window out from Split View.
1303+ [vimController sendMessage: BackingPropertiesChangedMsgID data: nil ];
1304+ }
1305+ }
1306+
13071307- (void )windowDidFailToExitFullScreen : (NSWindow *)window
13081308{
13091309 // TODO: Is this the correct way to deal with this message? Are we still
You can’t perform that action at this time.
0 commit comments