1
0
mirror of https://github.com/gryf/wmaker.git synced 2025-12-20 21:08:08 +01:00

added code to store lowered state of menus

compat code for XInternAtoms
This commit is contained in:
kojima
2000-04-01 02:16:14 +00:00
parent e7f7030e1b
commit 32160ff66f
3 changed files with 91 additions and 38 deletions

View File

@@ -1389,7 +1389,12 @@ doWindozeCycle(WWindow *wwin, XEvent *event, Bool next)
}
UpdateSwitchMenu(scr, newFocused, ACTION_CHANGE_STATE);
} else if (wKeyBindings[WKBD_LOWER].keycode == ev.xkey.keycode
} else {
handleKeyPress(&ev);
}
/*
else if (wKeyBindings[WKBD_LOWER].keycode == ev.xkey.keycode
&& wKeyBindings[WKBD_LOWER].modifier == modifiers) {
wLowerFrame(newFocused->frame->core);
@@ -1398,7 +1403,7 @@ doWindozeCycle(WWindow *wwin, XEvent *event, Bool next)
&& wKeyBindings[WKBD_RAISE].modifier == modifiers) {
wRaiseFrame(newFocused->frame->core);
}
}*/
} else if (ev.type == KeyRelease) {
int i;