Commit a6dc4906 authored by Ken Thomases's avatar Ken Thomases Committed by Alexandre Julliard

winemac: Ignore window frame changes while minimized but check again when unminimized.

parent 62a1907c
......@@ -1229,6 +1229,8 @@ static inline void fix_generic_modifiers_by_device(NSUInteger* modifiers)
causing_becomeKeyWindow = FALSE;
[controller windowGotFocus:self];
}
[self windowDidResize:notification];
}
- (void) windowDidEndLiveResize:(NSNotification *)notification
......
......@@ -1500,7 +1500,7 @@ void macdrv_window_frame_changed(HWND hwnd, CGRect frame)
if (!hwnd) return;
if (!(data = get_win_data(hwnd))) return;
if (!data->on_screen)
if (!data->on_screen || data->minimized)
{
release_win_data(data);
return;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment