From 9e3ac3c1f2cbd44cbb821d266400d70320ac6ccc Mon Sep 17 00:00:00 2001 From: William Reynish Date: Sat, 22 Aug 2009 08:06:54 +0000 Subject: Added extra padding for OS X at the top of the screen when opening user prefs. The window header was still getting clipped slightly behind the menu bar. --- source/blender/windowmanager/intern/wm_window.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/windowmanager/intern/wm_window.c b/source/blender/windowmanager/intern/wm_window.c index 27a1b076a28..d70516ef02e 100644 --- a/source/blender/windowmanager/intern/wm_window.c +++ b/source/blender/windowmanager/intern/wm_window.c @@ -91,7 +91,7 @@ static void wm_window_check_position(rcti *rect) wm_get_screensize(&width, &height); #ifdef __APPLE__ - height -= 42; + height -= 70; #endif if(rect->xmin < 0) { -- cgit v1.2.3