mirror of
https://github.com/macvim-dev/macvim.git
synced 2026-06-11 15:37:29 +02:00
Early-out of resize handling if the window has not been presented yet.
This commit is contained in:
@@ -993,7 +993,7 @@
|
||||
|
||||
- (void)windowDidResize:(id)sender
|
||||
{
|
||||
if (!setupDone || fullScreenEnabled) return;
|
||||
if (!setupDone || fullScreenEnabled || !windowPresented) return;
|
||||
|
||||
// NOTE: Since we have no control over when the window may resize (Cocoa
|
||||
// may resize automatically) we simply set the view to fill the entire
|
||||
|
||||
Reference in New Issue
Block a user