From: William Reynish Date: Sat, 22 Aug 2009 08:06:54 +0000 (+0000) Subject: Added extra padding for OS X at the top of the screen when opening user prefs. The... X-Git-Tag: v2.50~1395^2~311 X-Git-Url: https://git.blender.org/gitweb/gitweb.cgi/blender.git/commitdiff_plain/9e3ac3c1f2cbd44cbb821d266400d70320ac6ccc 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. --- 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) {