Changeset 1183 for trunk/GSASIIphsGUI.py


Ignore:
Timestamp:
Jan 5, 2014 9:22:22 AM (10 years ago)
Author:
toby
Message:

fixup number formatting; update produced doc files

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/GSASIIphsGUI.py

    r1172 r1183  
    17331733                subSizer1.Add(wx.StaticText(panel1,wx.ID_ANY,str(lbl)))
    17341734                try:
    1735                     value = G2py3.FormatValue(xyz)
     1735                    value = G2py3.FormatSigFigs(xyz)
    17361736                except TypeError:
    17371737                    value = str(xyz)           
     
    17391739                subSizer2.Add(wx.StaticText(panel2,wx.ID_ANY,str(var)))
    17401740                try:
    1741                     value = G2py3.FormatValue(val)
     1741                    value = G2py3.FormatSigFigs(val)
    17421742                except TypeError:
    17431743                    value = str(val)           
     
    17671767                subSizer1.Add(wx.StaticText(panel1,wx.ID_ANY,str(lbl)))
    17681768                try:
    1769                     value = G2py3.FormatValue(xyz)
     1769                    value = G2py3.FormatSigFigs(xyz)
    17701770                except TypeError:
    17711771                    value = str(xyz)           
     
    17741774                subSizer2.Add(wx.StaticText(panel2,wx.ID_ANY,str(var)))
    17751775                try:
    1776                     value = G2py3.FormatValue(val)
     1776                    value = G2py3.FormatSigFigs(val)
    17771777                except TypeError:
    17781778                    value = str(val)           
Note: See TracChangeset for help on using the changeset viewer.