- Timestamp:
- Jul 18, 2018 4:24:05 AM (6 years ago)
- Children:
- 1309205b
- Parents:
- 6138f73
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/MainWindow/GuiManager.py
r41d6187 r46ca1f4 87 87 # Fork off logging messages to the Log Window 88 88 handler = setup_qt_logging() 89 handler.messageWritten.connect(self. listWidget.insertPlainText)89 handler.messageWritten.connect(self.appendLog) 90 90 91 91 # Log the start of the session … … 269 269 """ 270 270 self.statusLabel.setText(text) 271 272 def appendLog(self, msg): 273 """Appends a message to the list widget in the Log Explorer. Use this 274 instead of listWidget.insertPlainText() to facilitate auto-scrolling""" 275 self.listWidget.append(msg.strip()) 271 276 272 277 def createGuiData(self, item, p_file=None):
Note: See TracChangeset
for help on using the changeset viewer.