camerauis/cameraxui/cxui/src/cxuiview.cpp
changeset 60 a289dde0a1d6
parent 56 01e205c615b9
child 63 415ff50d2eca
--- a/camerauis/cameraxui/cxui/src/cxuiview.cpp	Thu Sep 02 20:14:28 2010 +0300
+++ b/camerauis/cameraxui/cxui/src/cxuiview.cpp	Fri Sep 17 08:27:13 2010 +0300
@@ -435,8 +435,7 @@
  */
 void CxuiView::mousePressEvent(QGraphicsSceneMouseEvent *event)
 {
-    //! @todo temporary workaround for title bar mouse event handling bug
-    if (event->type() == QEvent::GraphicsSceneMousePress && event->scenePos().y() > 70 &&
+    if (event->type() == QEvent::GraphicsSceneMousePress && 
         isFeedbackEnabled()) {
         mControlsFeedback.setModalities(HbFeedback::All);
         mControlsFeedback.play();
@@ -451,8 +450,7 @@
  */
 void CxuiView::mouseReleaseEvent(QGraphicsSceneMouseEvent *event)
 {
-    //! @todo temporary workaround for title bar mouse event handling bug
-    if (event->type() == QEvent::GraphicsSceneMouseRelease && event->scenePos().y() > 70 &&
+    if (event->type() == QEvent::GraphicsSceneMouseRelease && 
         isFeedbackEnabled()) {        
         mControlsFeedback.setModalities(HbFeedback::Tactile);
         mControlsFeedback.play();
@@ -461,13 +459,15 @@
     }
 }
 
-void CxuiView::zoomDisappearEffectFinished(const HbEffect::EffectStatus &status) {
+void CxuiView::zoomDisappearEffectFinished(const HbEffect::EffectStatus &status) 
+{
     if (mSlider) {
         mSlider->hide();
     }
 }
 
-void CxuiView::zoomAppearEffectFinished(const HbEffect::EffectStatus &status) {
+void CxuiView::zoomAppearEffectFinished(const HbEffect::EffectStatus &status) 
+{
 }
 
 // End of file