Changeset 9f25bce in sasview for src/sas/qtgui/Plotter.py


Ignore:
Timestamp:
Mar 31, 2017 7:32:19 AM (7 years ago)
Author:
Piotr Rozyczko <rozyczko@…>
Branches:
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
Children:
116260a
Parents:
4ff5e35
Message:

Towards more 1D plots responding to data change.
Minor bug fixes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/sas/qtgui/Plotter.py

    r0268aed r9f25bce  
    572572 
    573573        #if self.leftdown and self.selectedText is not None: 
    574         if self.leftdown or self.selectedText is None: 
     574        if not self.leftdown or self.selectedText is None: 
    575575            return 
    576576        # User has clicked on text and is dragging 
    577         if event.inaxes is  None: 
     577        if event.inaxes is None: 
    578578            # User has dragged outside of axes 
    579579            self.selectedText = None 
Note: See TracChangeset for help on using the changeset viewer.