Changeset 8800ff6 in sasview for guitools


Ignore:
Timestamp:
Jul 9, 2008 10:16:29 AM (16 years ago)
Author:
Mathieu Doucet <doucetm@…>
Branches:
master, ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc, costrafo411, magnetic_scatt, release-4.1.1, release-4.1.2, release-4.2.2, release_4.0.1, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
Children:
4318af7f
Parents:
900c787
Message:

Added button ID check

File:
1 edited

Legend:

Unmodified
Added
Removed
  • guitools/PlotPanel.py

    r1c94a9f1 r8800ff6  
    189189    def onLeftDown(self,event):  
    190190        """ left button down and ready to drag""" 
    191         self.leftdown=True 
    192         ax = event.inaxes 
    193         if ax != None: 
    194             self.xInit,self.yInit=event.xdata,event.ydata 
     191        # Check that the LEFT button was pressed 
     192        if event.button == 1: 
     193            self.leftdown=True 
     194            ax = event.inaxes 
     195            if ax != None: 
     196                self.xInit,self.yInit=event.xdata,event.ydata 
    195197             
    196198             
    197199    def onLeftUp(self,event):  
    198200        """ Dragging is done """ 
    199         self.leftdown=False 
    200         self.mousemotion=False  
    201         self.leftup=True 
     201        # Check that the LEFT button was released 
     202        if event.button == 1: 
     203            self.leftdown=False 
     204            self.mousemotion=False  
     205            self.leftup=True 
    202206       
    203207    def onMouseMotion(self,event):  
Note: See TracChangeset for help on using the changeset viewer.