Hi Michael, This commit again has more than the commit message says. Please try to keep these things separate.
Cheers, Edward On 19 May 2010 07:31, <[email protected]> wrote: > Author: michaelbieri > Date: Wed May 19 07:31:46 2010 > New Revision: 11199 > > URL: http://svn.gna.org/viewcvs/relax?rev=11199&view=rev > Log: > Feedback for creating results file is added. > > Modified: > branches/bieri_gui/gui_bieri/analyses/auto_model_free.py > > Modified: branches/bieri_gui/gui_bieri/analyses/auto_model_free.py > URL: > http://svn.gna.org/viewcvs/relax/branches/bieri_gui/gui_bieri/analyses/auto_model_free.py?rev=11199&r1=11198&r2=11199&view=diff > ============================================================================== > --- branches/bieri_gui/gui_bieri/analyses/auto_model_free.py (original) > +++ branches/bieri_gui/gui_bieri/analyses/auto_model_free.py Wed May 19 > 07:31:46 2010 > @@ -80,7 +80,7 @@ > self.data.unresolved = '' > self.data.structure_file = '' > self.data.results_dir_model = getcwd() > - self.data.max_iter = 30 > + self.data.max_iter = "30" > > # The parent GUI element for this class. > self.parent = wx.Panel(notebook, -1) > @@ -153,7 +153,7 @@ > sizer.Add(label_maxiter, 0, > wx.ADJUST_MINSIZE|wx.ALIGN_CENTER_VERTICAL, 0) > > # Spinner. > - self.max_iter = wx.SpinCtrl(self.parent, -1, "30", min=25, max=100) > + self.max_iter = wx.SpinCtrl(self.parent, -1, self.data.max_iter, > min=25, max=100) > sizer.Add(self.max_iter, 0, > wx.ADJUST_MINSIZE|wx.ALIGN_CENTER_VERTICAL, 0) > > # Add the element to the box. > @@ -854,6 +854,10 @@ > > # Create the results file. > if model == 'final': > + # Feedback. > + wx.CallAfter(self.gui.controller.log_panel.AppendText, > '\n\nCreating results files\n\n') > + time.sleep(3) > + > results_analysis = model_free_results(self, data.save_dir, > data.structure_file) > > # Add grace plots to results tab. > > > _______________________________________________ > relax (http://nmr-relax.com) > > This is the relax-commits mailing list > [email protected] > > To unsubscribe from this list, get a password > reminder, or change your subscription options, > visit the list information page at > https://mail.gna.org/listinfo/relax-commits > _______________________________________________ relax (http://nmr-relax.com) This is the relax-devel mailing list [email protected] To unsubscribe from this list, get a password reminder, or change your subscription options, visit the list information page at https://mail.gna.org/listinfo/relax-devel

