[minor] textobjects split into single lines before adding to log for convenience
This commit is contained in:
parent
27e425844a
commit
e05909b188
4
PyLoT.py
4
PyLoT.py
@ -2339,7 +2339,9 @@ class MainWindow(QMainWindow):
|
||||
self.nextStation = bool(signal)
|
||||
|
||||
def addListItem(self, text):
|
||||
self.listWidget.addItem(text)
|
||||
textlist = text.split('\n')
|
||||
for text in textlist:
|
||||
self.listWidget.addItem(text)
|
||||
self.listWidget.scrollToBottom()
|
||||
|
||||
def init_fig_dict(self):
|
||||
|
Loading…
Reference in New Issue
Block a user