From bcc7cfb15ec6e21abaf1fee507b4dd46934a2e5f Mon Sep 17 00:00:00 2001 From: ZappoMan Date: Tue, 28 Jan 2014 20:38:47 -0800 Subject: [PATCH] removed some debug --- interface/src/ControllerScriptingInterface.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/interface/src/ControllerScriptingInterface.cpp b/interface/src/ControllerScriptingInterface.cpp index 491c38a9de..799a57b951 100644 --- a/interface/src/ControllerScriptingInterface.cpp +++ b/interface/src/ControllerScriptingInterface.cpp @@ -180,17 +180,12 @@ glm::vec3 ControllerScriptingInterface::getSpatialControlNormal(int controlIndex } bool ControllerScriptingInterface::isKeyCaptured(QKeyEvent* event) const { -qDebug() << "ControllerScriptingInterface::isKeyCaptured() event=" << event; return isKeyCaptured(KeyEvent(*event)); } bool ControllerScriptingInterface::isKeyCaptured(const KeyEvent& event) const { - -qDebug() << "ControllerScriptingInterface::isKeyCaptured() event.key=" << event.key; - // if we've captured some combination of this key it will be in the map if (_capturedKeys.contains(event.key, event)) { -qDebug() << "ControllerScriptingInterface::isKeyCaptured() event.key=" << event.key << " returning TRUE"; return true; } return false;