Switch the wizard's modifier choice when up or down are pressed

next
Deiz 2015-03-28 12:56:36 -04:00
parent af71d3a2f1
commit 95fa121c56
1 changed files with 6 additions and 0 deletions

View File

@ -592,6 +592,12 @@ static int handle_key_press(void *ignored, xcb_connection_t *conn, xcb_key_press
finish();
}
/* Swap between modifiers when up or down is pressed. */
if (sym == XK_Up || sym == XK_Down) {
modifier = (modifier == MOD_Mod1) ? MOD_Mod4 : MOD_Mod1;
handle_expose();
}
/* cancel any time */
if (sym == XK_Escape)
exit(0);