Bug 111326 - x-mouse-zoom mode is borked
Summary: x-mouse-zoom mode is borked
Status: RESOLVED FIXED
Alias: None
Product: kst
Classification: Applications
Component: general (show other bugs)
Version: 1.x
Platform: Fedora RPMs Linux
: NOR normal
Target Milestone: ---
Assignee: kst
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-08-23 01:04 UTC by Matthew Truch
Modified: 2005-09-03 21:40 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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
   }