mailr23666 - /trunk/gui/input_elements/sequence.py


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

Header


Content

Posted by edward on June 05, 2014 - 18:55:
Author: bugman
Date: Thu Jun  5 18:55:47 2014
New Revision: 23666

URL: http://svn.gna.org/viewcvs/relax?rev=23666&view=rev
Log:
Modified the Sequence GUI input element used for the user function list 
arguments.

The first column is now of fixed with when titles are supplied.  Previously 
when supplying titles,
the width would be tiny and no text would be visible.


Modified:
    trunk/gui/input_elements/sequence.py

Modified: trunk/gui/input_elements/sequence.py
URL: 
http://svn.gna.org/viewcvs/relax/trunk/gui/input_elements/sequence.py?rev=23666&r1=23665&r2=23666&view=diff
==============================================================================
--- trunk/gui/input_elements/sequence.py        (original)
+++ trunk/gui/input_elements/sequence.py        Thu Jun  5 18:55:47 2014
@@ -706,8 +706,8 @@
 
         # Add the index column.
         if self.titles:
-            self.sequence.InsertColumn(0, "")
-            self.sequence.SetColumnWidth(0, wx.LIST_AUTOSIZE)
+            self.sequence.InsertColumn(0, "Title")
+            self.sequence.SetColumnWidth(0, 200)
         else:
             self.sequence.InsertColumn(0, "Number")
             self.sequence.SetColumnWidth(0, 70)




Related Messages


Powered by MHonArc, Updated Thu Jun 05 19:00:02 2014