Skip to content
Snippets Groups Projects
Commit 24897c2e authored by Lan Dam's avatar Lan Dam
Browse files

change label Data Card to Memory Card

parent 2b665872
No related branches found
No related tags found
1 merge request!203Revise and add documentations
...@@ -494,7 +494,7 @@ class MainWindow(QtWidgets.QMainWindow, UIMainWindow): ...@@ -494,7 +494,7 @@ class MainWindow(QtWidgets.QMainWindow, UIMainWindow):
raise Exception(msg) raise Exception(msg)
self.data_type = 'RT130' self.data_type = 'RT130'
elif self.from_data_card_check_box.isChecked(): elif self.from_data_card_check_box.isChecked():
# When "From Data Card" checkbox is checked, no sub directories # When "From Memory Card" checkbox is checked, no sub directories
# displayed in File List box. The current dir (root_dir) will be # displayed in File List box. The current dir (root_dir) will be
# the only one of the selected dir for user to start processing # the only one of the selected dir for user to start processing
# from. # from.
...@@ -508,7 +508,7 @@ class MainWindow(QtWidgets.QMainWindow, UIMainWindow): ...@@ -508,7 +508,7 @@ class MainWindow(QtWidgets.QMainWindow, UIMainWindow):
else: else:
self.list_of_dir = [root_dir.joinpath('sdata')] self.list_of_dir = [root_dir.joinpath('sdata')]
else: else:
# When "From Data Card" checkbox is checked, sub directories of the # When "From Memory Card" checkbox is checked, sub directories of the
# current dir (root_dir) will be displayed in File List box. # current dir (root_dir) will be displayed in File List box.
# User can select one or more sub-directories to process from. # User can select one or more sub-directories to process from.
self.list_of_dir = [ self.list_of_dir = [
...@@ -950,7 +950,7 @@ class MainWindow(QtWidgets.QMainWindow, UIMainWindow): ...@@ -950,7 +950,7 @@ class MainWindow(QtWidgets.QMainWindow, UIMainWindow):
self.open_files_list.addItem(FileListItem(rt130_das)) self.open_files_list.addItem(FileListItem(rt130_das))
elif self.from_data_card_check_box.isChecked(): elif self.from_data_card_check_box.isChecked():
self.open_files_list.addItem('Data Card') self.open_files_list.addItem('Memory Card')
self.tracking_info_text_browser.setText( self.tracking_info_text_browser.setText(
"Please select the card by clicking on button " "Please select the card by clicking on button "
"'Main Data Directory'.") "'Main Data Directory'.")
......
...@@ -404,7 +404,7 @@ class UIMainWindow(object): ...@@ -404,7 +404,7 @@ class UIMainWindow(object):
read_option_grid = QGridLayout() read_option_grid = QGridLayout()
left_layout.addLayout(read_option_grid) left_layout.addLayout(read_option_grid)
self.from_data_card_check_box = QCheckBox( self.from_data_card_check_box = QCheckBox(
'From Data Card', self.central_widget) 'From Memory Card', self.central_widget)
read_option_grid.addWidget(self.from_data_card_check_box, 0, 0, 1, 2) read_option_grid.addWidget(self.from_data_card_check_box, 0, 0, 1, 2)
self.replot_button = QPushButton('RePlot', self.central_widget) self.replot_button = QPushButton('RePlot', self.central_widget)
......
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