Bug 111326

Summary: x-mouse-zoom mode is borked
Product: [Applications] kst Reporter: Matthew Truch <matt>
Component: generalAssignee: kst
Status: RESOLVED FIXED    
Severity: normal    
Priority: NOR    
Version: 1.x   
Target Milestone: ---   
Platform: Fedora RPMs   
OS: Linux   
Latest Commit: Version Fixed In:

Description Matthew Truch 2005-08-23 01:04:14 UTC
Version:           1.2.0_devel (using KDE KDE 3.4.0)
Installed from:    Fedora RPMs
OS:                Linux

x-mouse-zoom mode does not work properly.  You can start the action of zooming, but it doesn't let you finish.  It acts like you never press the mouse button the second time to finish the zoom.
Comment 1 Netterfield 2005-09-03 21:40:36 UTC
SVN commit 456839 by netterfield:

BUG: 111326
Make X zooming work again.



 M  +3 -4      kst2dplot.cpp  


--- trunk/extragear/graphics/kst/kst/kst2dplot.cpp #456838:456839
@@ -4168,11 +4168,10 @@
           }
         }
       }
-    } else if (legendUnder(e)) {
-      KstApp::inst()->plotDialog()->show_I(static_cast<KstViewWidget*>(view)->viewObject()->tagName(), tagName());
-      KstApp::inst()->plotDialog()->TabWidget->setCurrentPage(APPEARANCE_TAB);
     }
-    
+  } else if (legendUnder(e)) {
+    KstApp::inst()->plotDialog()->show_I(static_cast<KstViewWidget*>(view)->viewObject()->tagName(), tagName());
+    KstApp::inst()->plotDialog()->TabWidget->setCurrentPage(APPEARANCE_TAB);
     return; // no need to update, and we don't want to set INACTIVE
   }