Ignore:
Timestamp:
Oct 25, 2017 3:36:50 AM (6 years ago)
Author:
Adam Washington <adam.washington@…>
Children:
dc57b4f
Parents:
7d6dd6f
Message:

Add commandline checking to CorfuncPerspective?

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/sas/qtgui/Perspectives/Corfunc/CorfuncPerspective.py

    r7d6dd6f r4a9786d8  
    297297        self._allow_close = value 
    298298    # pylint: enable=invalid-name 
     299 
     300 
     301if __name__ == "__main__": 
     302    APPLICATION = QtGui.QApplication([]) 
     303    import qt4reactor 
     304    qt4reactor.install() 
     305    # DO NOT move the following import to the top! 
     306    # (unless you know what you're doing) 
     307    from twisted.internet import reactor 
     308    DIALOG = CorfuncWindow(reactor) 
     309    DIALOG.show() 
     310    reactor.run() 
Note: See TracChangeset for help on using the changeset viewer.