mailr15715 - /1.3/gui/controller.py


Others Months | Index by Date | Thread Index
>>   [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Header


Content

Posted by edward on April 16, 2012 - 00:10:
Author: bugman
Date: Mon Apr 16 00:10:35 2012
New Revision: 15715

URL: http://svn.gna.org/viewcvs/relax?rev=15715&view=rev
Log:
Fix for the relax controller find dialog on Mac OS X with wxPython 2.9.

The dialog Show() method now needs to be called.  This should not affect 
wxPython 2.8 behaviour.


Modified:
    1.3/gui/controller.py

Modified: 1.3/gui/controller.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/gui/controller.py?rev=15715&r1=15714&r2=15715&view=diff
==============================================================================
--- 1.3/gui/controller.py (original)
+++ 1.3/gui/controller.py Mon Apr 16 00:10:35 2012
@@ -744,6 +744,10 @@
             if status.show_gui:
                 self.find_dlg.Show(True)
 
+        # Otherwise show it.
+        else:
+            self.find_dlg.Show()
+
 
     def find_next(self, event):
         """Find the next instance of the text.




Related Messages


Powered by MHonArc, Updated Mon Apr 16 00:20:02 2012