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:
authorTom Musgrove <LetterRip@gmail.com>2006-11-30 05:35:12 +0300
committerTom Musgrove <LetterRip@gmail.com>2006-11-30 05:35:12 +0300
commit3731be91be7fa5a2fed041e00e4fae781664c5c5 (patch)
treed2923e24ec15ff226799b19755266fa6010bc65d /source/blender/src/editscreen.c
parentd310f203da61eedf01d43f5c8690e8a58d5a584c (diff)
=eliminate mouse centering on startup=
at the request of Aardbei in the forums eliminating the mouse centering on startup - Matt if there is a 'good reason' for the centering (asking on IRC no one had one), feel free to revert it back
Diffstat (limited to 'source/blender/src/editscreen.c')
-rw-r--r--source/blender/src/editscreen.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/src/editscreen.c b/source/blender/src/editscreen.c
index 4154b73ffa5..0f29f871fb3 100644
--- a/source/blender/src/editscreen.c
+++ b/source/blender/src/editscreen.c
@@ -2176,7 +2176,9 @@ static bScreen *addscreen(char *name) /* use setprefsize() if you want somethin
glClear(GL_COLOR_BUFFER_BIT);
window_swap_buffers(mainwin);
- warp_pointer(sc->sizex/2, sc->sizey/2);
+ /* this is unneeded and with large monitors can be a
+ * pain so commenting out */
+ /* warp_pointer(sc->sizex/2, sc->sizey/2); */
mainqenter(REDRAW, 1);
}