Hi Michael,
That makes it crystal clear what this dialog is asking for! I think
you unintentionally introduced a mistake here in the global settings
dialog:
> - self.label_2_copy = wx.StaticText(self, -1, "Bond Length:")
> + self.label_2_copy = wx.StaticText(self, -1, "Bond Length-:")
To be consistent with the rest, you probably want:
self.label_2_copy = wx.StaticText(self, -1, "Bond Length")
Also I have a spelling fix for:
> + self.subheader = wx.StaticText(self, -1, "Please specify culumn
> number below:\n")
To:
self.subheader = wx.StaticText(self, -1, "Please specify
column number below:\n")
Cheers,
Edward
On 10 May 2010 08:26, <[email protected]> wrote:
> Author: michaelbieri
> Date: Mon May 10 08:26:21 2010
> New Revision: 11184
>
> URL: http://svn.gna.org/viewcvs/relax?rev=11184&view=rev
> Log:
> Description to add column numbers in parameter file settings dialog is added.
>
> Modified:
> branches/bieri_gui/gui_bieri/settings.py
>
> Modified: branches/bieri_gui/gui_bieri/settings.py
> URL:
> http://svn.gna.org/viewcvs/relax/branches/bieri_gui/gui_bieri/settings.py?rev=11184&r1=11183&r2=11184&view=diff
> ==============================================================================
> --- branches/bieri_gui/gui_bieri/settings.py (original)
> +++ branches/bieri_gui/gui_bieri/settings.py Mon May 10 08:26:21 2010
> @@ -64,7 +64,7 @@
> wx.Dialog.__init__(self, *args, **kwds)
> self.label_1_copy = wx.StaticText(self, -1, "Global Parameters for
> relax")
> self.bitmap_1_copy = wx.StaticBitmap(self, -1,
> wx.Bitmap(IMAGE_PATH+'relax.gif', wx.BITMAP_TYPE_ANY))
> - self.label_2_copy = wx.StaticText(self, -1, "Bond Length:")
> + self.label_2_copy = wx.StaticText(self, -1, "Bond Length-:")
> self.bond = wx.TextCtrl(self, -1, old_settings[0])
> self.label_3_copy = wx.StaticText(self, -1, "CSA")
> self.csa = wx.TextCtrl(self, -1, old_settings[1])
> @@ -162,6 +162,7 @@
> wx.Dialog.__init__(self, *args, **kwds)
> self.label_1_copy_copy = wx.StaticText(self, -1, "Parameter File
> Settings")
> self.bitmap_1_copy_copy = wx.StaticBitmap(self, -1,
> wx.Bitmap(IMAGE_PATH+'relax.gif', wx.BITMAP_TYPE_ANY))
> + self.subheader = wx.StaticText(self, -1, "Please specify culumn
> number below:\n")
> self.label_2_copy_copy = wx.StaticText(self, -1, "Molecule Name")
> self.mol_nam = wx.TextCtrl(self, -1, old_settings[0])
> self.label_3_copy_copy = wx.StaticText(self, -1, "Residue Number")
> @@ -192,6 +193,7 @@
> grid_sizer_1_copy_copy = wx.GridSizer(8, 2, 0, 0)
> sizer_1_copy_copy.Add(self.label_1_copy_copy, 0,
> wx.ALL|wx.ALIGN_CENTER_HORIZONTAL, 5)
> sizer_1_copy_copy.Add(self.bitmap_1_copy_copy, 0,
> wx.ALL|wx.ALIGN_CENTER_HORIZONTAL, 5)
> + sizer_1_copy_copy.Add(self.subheader, 0,
> wx.ALL|wx.ALIGN_CENTER_HORIZONTAL, 5)
> grid_sizer_1_copy_copy.Add(self.label_2_copy_copy, 0, wx.LEFT, 5)
> grid_sizer_1_copy_copy.Add(self.mol_nam, 0, 0, 0)
> grid_sizer_1_copy_copy.Add(self.label_3_copy_copy, 0, wx.LEFT, 5)
>
>
> _______________________________________________
> 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