浏览代码

Mode-guard in on_motionnotify

master
Bert 14 年前
父节点
当前提交
72e8baf13e
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      main.c

+ 1
- 1
main.c 查看文件

@@ -538,7 +538,7 @@ void on_buttonpress(XButtonEvent *bev) {
}

void on_motionnotify(XMotionEvent *mev) {
if (!mev)
if (!mev || mode != MODE_NORMAL)
return;

if (mev->x >= 0 && mev->x <= win.w && mev->y >= 0 && mev->y <= win.h) {


正在加载...
取消
保存