From 40cf7853184875e77affccbc0ca3662f2cdb69d6 Mon Sep 17 00:00:00 2001 From: David Rose Date: Tue, 14 Jan 2003 19:30:38 +0000 Subject: [PATCH] explicitly ignore T_resume_down --- panda/src/tform/mouseWatcher.cxx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/panda/src/tform/mouseWatcher.cxx b/panda/src/tform/mouseWatcher.cxx index 391cd4cddc..9abf21b598 100644 --- a/panda/src/tform/mouseWatcher.cxx +++ b/panda/src/tform/mouseWatcher.cxx @@ -909,6 +909,10 @@ do_transmit_data(const DataNodeTransmit &input, DataNodeTransmit &output) { case ButtonEvent::T_keystroke: keystroke(be._keycode); break; + + case ButtonEvent::T_resume_down: + // Ignore this, since the button wasn't pressed just now. + break; } } }