mailr19518 - /trunk/gui/components/spectrum.py


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

Header


Content

Posted by edward on April 21, 2013 - 00:37:
Author: bugman
Date: Sun Apr 21 00:37:04 2013
New Revision: 19518

URL: http://svn.gna.org/viewcvs/relax?rev=19518&view=rev
Log:
Bug fix for the right click popup menu in the spectra list GUI element.

This affects the NOE, R1, and R2 analyses.  The actions of the menu items 
were all mixed up.


Modified:
    trunk/gui/components/spectrum.py

Modified: trunk/gui/components/spectrum.py
URL: 
http://svn.gna.org/viewcvs/relax/trunk/gui/components/spectrum.py?rev=19518&r1=19517&r2=19518&view=diff
==============================================================================
--- trunk/gui/components/spectrum.py (original)
+++ trunk/gui/components/spectrum.py Sun Apr 21 00:37:04 2013
@@ -321,27 +321,27 @@
                 'id': wx.NewId(),
                 'text': "Set the &baseplane RMSD",
                 'icon': 
fetch_icon(uf_info.get_uf('spectrum.baseplane_rmsd').gui_icon),
-                'method': self.action_relax_fit_relax_time
+                'method': self.action_spectrum_baseplane_rmsd
             }, {
                 'id': wx.NewId(),
                 'text': "&Delete the peak intensities",
                 'icon': 
fetch_icon(uf_info.get_uf('spectrum.delete').gui_icon),
-                'method': self.action_spectrum_baseplane_rmsd
+                'method': self.action_spectrum_delete
             }, {
                 'id': wx.NewId(),
                 'text': "Set the number of integration &points",
                 'icon': 
fetch_icon(uf_info.get_uf('spectrum.integration_points').gui_icon),
-                'method': self.action_spectrum_delete
+                'method': self.action_spectrum_integration_points
             }, {
                 'id': wx.NewId(),
                 'text': "Specify which spectra are &replicated",
                 'icon': 
fetch_icon(uf_info.get_uf('spectrum.replicated').gui_icon),
-                'method': self.action_spectrum_integration_points
+                'method': self.action_spectrum_replicated
             }, {
                 'id': wx.NewId(),
                 'text': "Set the relaxation &time",
                 'icon': 
fetch_icon(uf_info.get_uf('relax_fit.relax_time').gui_icon),
-                'method': self.action_spectrum_replicated
+                'method': self.action_relax_fit_relax_time
             }
         ]
 




Related Messages


Powered by MHonArc, Updated Sun Apr 21 01:00:03 2013