mailr10270 - /branches/bieri_gui/gui_bieri/relax_gui.py


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

Header


Content

Posted by edward on January 21, 2010 - 07:26:
Author: bugman
Date: Thu Jan 21 07:26:19 2010
New Revision: 10270

URL: http://svn.gna.org/viewcvs/relax?rev=10270&view=rev
Log:
Closebox in mainwindow was removed to force output of reference.

This corresponds to the removed_closebox_patch file attached to 
https://gna.org/task/?6847 by
Michael Bieri (https://gna.org/users/michaelbieri), in the zip file 
100121_patches.tar.gz
(https://gna.org/support/download.php?file_id=7726).

replaced:
kwds["style"] = wx.DEFAULT_FRAME_STYLE
to
kwds["style"] = wx.MINIMIZE_BOX | wx.SYSTEM_MENU | wx.CAPTION | 
wx.CLIP_CHILDREN


Modified:
    branches/bieri_gui/gui_bieri/relax_gui.py

Modified: branches/bieri_gui/gui_bieri/relax_gui.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/bieri_gui/gui_bieri/relax_gui.py?rev=10270&r1=10269&r2=10270&view=diff
==============================================================================
--- branches/bieri_gui/gui_bieri/relax_gui.py (original)
+++ branches/bieri_gui/gui_bieri/relax_gui.py Thu Jan 21 07:26:19 2010
@@ -157,8 +157,8 @@
 
 class main(wx.Frame):
     def __init__(self, *args, **kwds):
-        # begin wxGlade: main.__init__
-        kwds["style"] = wx.DEFAULT_FRAME_STYLE
+        # begin 
+        kwds["style"] = wx.MINIMIZE_BOX | wx.SYSTEM_MENU | wx.CAPTION | 
wx.CLIP_CHILDREN 
         wx.Frame.__init__(self, *args, **kwds)
         self.notebook_2 = wx.Notebook(self, -1, style=wx.NB_LEFT)
         self.results = wx.Panel(self.notebook_2, -1)




Related Messages


Powered by MHonArc, Updated Thu Jan 21 07:40:02 2010