A fixme added.

This commit is contained in:
johns 2000-06-30 07:54:46 +00:00
parent 296cea1888
commit 003392b4b2
3 changed files with 3 additions and 0 deletions

View file

@ -511,6 +511,7 @@ local void X11HandleKey(KeySym code)
if( HandleKeyDown(icode) ) {
return;
}
// FIXME: Should come first
DoButtonPanelKey(icode);
}

View file

@ -348,6 +348,7 @@ local void SdlHandleKey(const SDL_keysym* code)
if( HandleKeyDown(icode) ) {
return;
}
// FIXME: Should come first
DoButtonPanelKey(icode);
}

View file

@ -618,6 +618,7 @@ local void KeyboardEvent(int scancode, int press) {
if(HandleKeyDown(icode)) {
return;
}
// FIXME: Should come first
DoButtonPanelKey(icode);
} else if(press == KEY_EVENTRELEASE) {
switch(scancode) {