Changeset 3594 for trunk/GSASIIphsGUI.py


Ignore:
Timestamp:
Sep 12, 2018 3:09:51 PM (5 years ago)
Author:
vondreele
Message:

fix vector problem in FindNonstandard? that messed up nonstandard atom positions.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/GSASIIphsGUI.py

    r3593 r3594  
    551551    '''
    552552    def __init__(self,parent,Name,Atoms,atCodes,atMxyz,ifDelete=False):
    553         wx.Dialog.__init__(self,parent,wx.ID_ANY,'Magnetic atom selection for '+Name,
     553        wx.Dialog.__init__(self,parent,wx.ID_ANY,'Magnetic atom selection',
    554554            pos=wx.DefaultPosition,style=wx.DEFAULT_DIALOG_STYLE)
    555555        self.panel = wx.Panel(self)         #just a dummy - gets destroyed in Draw!
     556        self.Name = Name
    556557        self.Atoms = Atoms
    557558        self.atCodes = atCodes
     
    574575        Mstr = [' Mx',' My',' Mz']
    575576        mainSizer = wx.BoxSizer(wx.VERTICAL)
     577        mainSizer.Add(wx.StaticText(self.panel,label='For: %s'%self.Name),0,WACV)
    576578       
    577579        mainSizer.Add(wx.StaticText(self.panel,label='        Name, x, y, z, allowed moments, mag. site sym:'),0,WACV)
Note: See TracChangeset for help on using the changeset viewer.