Changeset 3445 for trunk/GSASIIctrlGUI.py
- Timestamp:
- Jun 21, 2018 9:44:35 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIctrlGUI.py
r3442 r3445 1370 1370 style=wx.RAISED_BORDER) 1371 1371 but.Bind(wx.EVT_BUTTON, self._OnCopyButton) 1372 but.SetToolTipString('Press to copy adjacent value to all rows below') 1372 if 'phoenix' in wx.version(): 1373 but.SetToolTip('Press to copy adjacent value to all rows below') 1374 else: 1375 but.SetToolTipString('Press to copy adjacent value to all rows below') 1373 1376 self.ButtonIndex[but] = i 1374 1377 subSizer.Add(but) … … 3690 3693 return 3691 3694 if hinttext is None: hinttext = '' 3692 win.SetToolTipString(hinttext) 3695 if 'phoenix' in wx.version(): 3696 win.SetToolTip(hinttext) 3697 else: 3698 win.SetToolTipString(hinttext) 3693 3699 prev_rowcol[:] = [row,col,win] 3694 3700 if event: event.Skip() 3695 3696 wx.EVT_MOTION(self.GetGridWindow(), OnMouseMotion) 3697 if colLblCallback: wx.EVT_MOTION(self.GetGridColLabelWindow(), OnMouseMotion) 3698 if rowLblCallback: wx.EVT_MOTION(self.GetGridRowLabelWindow(), OnMouseMotion) 3701 if 'phoenix' in wx.version(): 3702 self.GetGridWindow().Bind(wx.EVT_MOTION,OnMouseMotion) 3703 if colLblCallback: self.GetGridColLabelWindow().Bind(wx.EVT_MOTION,OnMouseMotion) 3704 if rowLblCallback: self.GetGridRowLabelWindow().Bind(wx.EVT_MOTION,OnMouseMotion) 3705 else: 3706 wx.EVT_MOTION(self.GetGridWindow(), OnMouseMotion) 3707 if colLblCallback: wx.EVT_MOTION(self.GetGridColLabelWindow(), OnMouseMotion) 3708 if rowLblCallback: wx.EVT_MOTION(self.GetGridRowLabelWindow(), OnMouseMotion) 3699 3709 3700 3710 ################################################################################
Note: See TracChangeset
for help on using the changeset viewer.