mailr13392 - /branches/gui_testing/gui/wizard.py


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

Header


Content

Posted by edward on July 01, 2011 - 19:12:
Author: bugman
Date: Fri Jul  1 19:12:33 2011
New Revision: 13392

URL: http://svn.gna.org/viewcvs/relax?rev=13392&view=rev
Log:
Removed the starting and ending newlines from the id_string_doc used as a 
tooltip in spin_id_element().


Modified:
    branches/gui_testing/gui/wizard.py

Modified: branches/gui_testing/gui/wizard.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/gui_testing/gui/wizard.py?rev=13392&r1=13391&r2=13392&view=diff
==============================================================================
--- branches/gui_testing/gui/wizard.py (original)
+++ branches/gui_testing/gui/wizard.py Fri Jul  1 19:12:33 2011
@@ -724,9 +724,9 @@
         else:
             sizer.AddSpacer(spacer)
 
-        # Tooltip (the ID string documentation).
-        text.SetToolTipString(id_string_doc[1])
-        field.SetToolTipString(id_string_doc[1])
+        # Tooltip (the ID string documentation, with starting and ending 
newlines removed).
+        text.SetToolTipString(id_string_doc[1][1:-1])
+        field.SetToolTipString(id_string_doc[1][1:-1])
 
         # Return the object.
         return field




Related Messages


Powered by MHonArc, Updated Fri Jul 01 19:20:02 2011