diff options
-rw-r--r-- | src/video/cocoa/wnd_quartz.mm | 2 | ||||
-rw-r--r-- | src/video/cocoa/wnd_quickdraw.mm | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/src/video/cocoa/wnd_quartz.mm b/src/video/cocoa/wnd_quartz.mm index 18a87e2aa..c7ec15c0e 100644 --- a/src/video/cocoa/wnd_quartz.mm +++ b/src/video/cocoa/wnd_quartz.mm @@ -456,6 +456,8 @@ bool WindowQuartzSubdriver::SetVideoMode(int width, int height) [ this->window setMiniwindowTitle:nsscaption ]; [ nsscaption release ]; + [ this->window setContentMinSize:NSMakeSize(64.0f, 64.0f) ]; + [ this->window setAcceptsMouseMovedEvents:YES ]; [ this->window setViewsNeedDisplay:NO ]; diff --git a/src/video/cocoa/wnd_quickdraw.mm b/src/video/cocoa/wnd_quickdraw.mm index f4c72cc1f..5d7ce0099 100644 --- a/src/video/cocoa/wnd_quickdraw.mm +++ b/src/video/cocoa/wnd_quickdraw.mm @@ -386,6 +386,8 @@ bool WindowQuickdrawSubdriver::SetVideoMode(int width, int height) [ this->window setMiniwindowTitle:nsscaption ]; [ nsscaption release ]; + [ this->window setContentMinSize:NSMakeSize(64.0f, 64.0f) ]; + [ this->window setAcceptsMouseMovedEvents:YES ]; [ this->window setViewsNeedDisplay:NO ]; |