From 001b9721896566745052c60ce2c067d19a3cc612 Mon Sep 17 00:00:00 2001 From: scroggo Date: Fri, 18 Mar 2011 22:09:01 +0000 Subject: Pass motion events in the unix sample app. Allows dragging and flinging the samples. git-svn-id: http://skia.googlecode.com/svn/trunk@964 2bbb7eff-a529-9590-31e7-b0007b416f81 --- unix_test_app/main.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/unix_test_app/main.cpp b/unix_test_app/main.cpp index d21723602f..dace89ef76 100644 --- a/unix_test_app/main.cpp +++ b/unix_test_app/main.cpp @@ -96,9 +96,9 @@ int main(){ window->handleClick(evt.xbutton.x, evt.xbutton.y, SkView::Click::kUp_State); break; case MotionNotify: - // 'If' statement is unnecessary, since we are only masking for button 1 - if (evt.xbutton.button == Button1) - window->handleClick(evt.xmotion.x, evt.xmotion.y, SkView::Click::kMoved_State); + // Since we are only masking to get the motion events for when Button1 is pressed, + // we can assume the pointer is moving with Button1 pressed. + window->handleClick(evt.xmotion.x, evt.xmotion.y, SkView::Click::kMoved_State); break; case KeyPress: { -- cgit v1.2.3