Changes in src/sas/sasgui/guiframe/gui_statusbar.py [5251ec6:34f23c8] in sasview
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/sasgui/guiframe/gui_statusbar.py
r5251ec6 r34f23c8 112 112 Method to send an arbitrary number of messages to the console log 113 113 114 :param messages: A list of strings to be sent to the console log. 114 :param messages: A list of strings to be sent to the console log. 115 115 """ 116 116 if messages: … … 234 234 If the window is resized, redraw the window. 235 235 """ 236 self.reposition() 236 self.reposition() 237 237 self.size_changed = True 238 238 … … 360 360 if hasattr(event, "status"): 361 361 self.SetStatusText(text=str(event.status), event=event) 362 362 363 363 def set_gauge(self, event): 364 364 """ … … 423 423 self.SetFieldsCount(1) 424 424 self.timeout = timeout 425 width, height = parent.GetSize Tuple()425 width, height = parent.GetSize() 426 426 self.gauge = wx.Gauge(self, style=wx.GA_HORIZONTAL, 427 427 size=(width, height/10))
Note: See TracChangeset
for help on using the changeset viewer.