mirror of https://github.com/0intro/wmii
fixed forgotten def.mod occurence in event.c
This commit is contained in:
parent
4e4793336f
commit
aa50f6e179
|
@ -70,7 +70,7 @@ handle_buttonpress(XEvent *e)
|
|||
}
|
||||
else if((c = frame_of_win(ev->window))) {
|
||||
ev->state &= valid_mask;
|
||||
if((ev->state & Mod1Mask) && (ev->button == Button3)) {
|
||||
if((ev->state & def.mod) && (ev->button == Button3)) {
|
||||
if(sel_client() != c)
|
||||
focus(c);
|
||||
else {
|
||||
|
|
Loading…
Reference in New Issue