[minor] textobjects split into single lines before adding to log for convenience

This commit is contained in:
Marcel Paffrath 2018-07-04 16:48:14 +02:00
parent 27e425844a
commit e05909b188

View File

@ -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):