- 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...
This commit is contained in:
2003-10-25 22:29:24 +00:00
parent 36668278ac
commit bbd9018ec5
5 changed files with 79 additions and 21 deletions

View File

@@ -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;
}