Skip to content
Snippets Groups Projects
Commit 4987ac06 authored by Kien Le's avatar Kien Le
Browse files

Fix stop reading message not showing up

parent eee530ad
No related branches found
No related tags found
1 merge request!306Fix stop reading message not showing up
......@@ -712,6 +712,7 @@ class MainWindow(QtWidgets.QMainWindow, UIMainWindow):
try:
del self.data_object
self.data_object = None
self.processing_log = []
self.clear_actions_from_forms_menu()
except AttributeError:
......@@ -928,6 +929,9 @@ class MainWindow(QtWidgets.QMainWindow, UIMainWindow):
Plot using data from self.data_object with the current options set
from GUI
"""
if self.data_object is None:
return
plotting_start_msg = 'Start plotting data...'
display_tracking_info(self.tracking_info_text_browser,
plotting_start_msg)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment