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:
authorTon Roosendaal <ton@blender.org>2003-10-26 02:29:24 +0400
committerTon Roosendaal <ton@blender.org>2003-10-26 02:29:24 +0400
commitbbd9018ec5b66a36c6fc1c56bd0facd534a029fe (patch)
tree697603e11cabf0b1d86775b15f0d5269cc892446 /source/blender/src/ghostwinlay.c
parent36668278ac0c0ea8114154f75e63e20f72cc1057 (diff)
- fixed colors of ipokeys in 3d window
- fixed constraint popup menu (used icons) - moved 'full' and 'View3d props' and 'background' items in menu to bottom Hope Matt wont kill me for it, but these were about the only useful ones there... :) - little fix in interface.c for menus...
Diffstat (limited to 'source/blender/src/ghostwinlay.c')
-rw-r--r--source/blender/src/ghostwinlay.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/source/blender/src/ghostwinlay.c b/source/blender/src/ghostwinlay.c
index 52fbb84d80f..38df9ead5e0 100644
--- a/source/blender/src/ghostwinlay.c
+++ b/source/blender/src/ghostwinlay.c
@@ -369,7 +369,8 @@ static int change_bit(int val, int bit, int to_on) {
return to_on?(val|bit):(val&~bit);
}
-static int event_proc(GHOST_EventHandle evt, GHOST_TUserDataPtr private) {
+static int event_proc(GHOST_EventHandle evt, GHOST_TUserDataPtr private)
+{
GHOST_TEventType type= GHOST_GetEventType(evt);
if (type == GHOST_kEventQuit) {
@@ -541,9 +542,9 @@ static int event_proc(GHOST_EventHandle evt, GHOST_TUserDataPtr private) {
window_handle(win, RESHAPE, 1);
break;
}
- }
}
-
+ }
+
return 1;
}