Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Reynish <william@reynish.com>2009-08-22 12:06:54 +0400
committerWilliam Reynish <william@reynish.com>2009-08-22 12:06:54 +0400
commit9e3ac3c1f2cbd44cbb821d266400d70320ac6ccc (patch)
tree0c08d149bcd9fde1bf8e812dafc76d75a1e50c48
parentb20f4e46c686f9c9fb0043eb3b95f639773d4a41 (diff)
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.
-rw-r--r--source/blender/windowmanager/intern/wm_window.c2
1 files changed, 1 insertions, 1 deletions
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) {