mailr13797 - /branches/gui_testing/gui/components/relax_data.py


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

Header


Content

Posted by edward on July 21, 2011 - 09:40:
Author: bugman
Date: Thu Jul 21 09:40:38 2011
New Revision: 13797

URL: http://svn.gna.org/viewcvs/relax?rev=13797&view=rev
Log:
Fix for the relaxation data list GUI element - the frequency value was being 
set to the wrong col.


Modified:
    branches/gui_testing/gui/components/relax_data.py

Modified: branches/gui_testing/gui/components/relax_data.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/gui_testing/gui/components/relax_data.py?rev=13797&r1=13796&r2=13797&view=diff
==============================================================================
--- branches/gui_testing/gui/components/relax_data.py (original)
+++ branches/gui_testing/gui/components/relax_data.py Thu Jul 21 09:40:38 2011
@@ -160,7 +160,7 @@
                 self.grid.SetCellValue(i, 1, cdp.ri_type[id])
 
                 # Set the frequencies.
-                self.grid.SetCellValue(i, 1, cdp.frq[id])
+                self.grid.SetCellValue(i, 2, cdp.frq[id])
 
         # Set the grid properties once finalised.
         for i in range(self.grid.GetNumberRows()):




Related Messages


Powered by MHonArc, Updated Thu Jul 21 11:40:02 2011