diff options
Diffstat (limited to 'views/event.h')
-rw-r--r-- | views/event.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/views/event.h b/views/event.h index 91c0a53..6f96a71 100644 --- a/views/event.h +++ b/views/event.h @@ -41,8 +41,6 @@ class Event { ET_MOUSE_MOVED, ET_MOUSE_ENTERED, ET_MOUSE_EXITED, - ET_MOUSE_NEAR, - ET_MOUSE_EXITED_NEAR, ET_KEY_PRESSED, ET_KEY_RELEASED, ET_MOUSEWHEEL, @@ -102,9 +100,7 @@ class Event { type_ == ET_MOUSE_MOVED || type_ == ET_MOUSE_ENTERED || type_ == ET_MOUSE_EXITED || - type_ == ET_MOUSEWHEEL || - type_ == ET_MOUSE_NEAR || - type_ == ET_MOUSE_EXITED_NEAR; + type_ == ET_MOUSEWHEEL; } #if defined(OS_WIN) |