Now the mshortcuts are even more consistent.

Keep everyone happy

Signed-off-by: Christoph Lohmann <20h@r-36.net>
This commit is contained in:
Ivan Tham 2015-11-01 10:53:56 +08:00 committed by Christoph Lohmann
parent e2aa03e6b7
commit f0398db4d1
1 changed files with 5 additions and 5 deletions

10
st.c
View File

@ -944,17 +944,17 @@ void
bpress(XEvent *e) bpress(XEvent *e)
{ {
struct timespec now; struct timespec now;
MouseShortcut *mk; MouseShortcut *ms;
if (IS_SET(MODE_MOUSE) && !(e->xbutton.state & forceselmod)) { if (IS_SET(MODE_MOUSE) && !(e->xbutton.state & forceselmod)) {
mousereport(e); mousereport(e);
return; return;
} }
for (mk = mshortcuts; mk < mshortcuts + LEN(mshortcuts); mk++) { for (ms = mshortcuts; ms < mshortcuts + LEN(mshortcuts); ms++) {
if (e->xbutton.button == mk->b if (e->xbutton.button == ms->b
&& match(mk->mask, e->xbutton.state)) { && match(ms->mask, e->xbutton.state)) {
ttysend(mk->s, strlen(mk->s)); ttysend(ms->s, strlen(ms->s));
return; return;
} }
} }