diff --git a/sohstationviewer/view/main_window.py b/sohstationviewer/view/main_window.py index 07ee57af9173542e99724b0bb10788f875b776c2..30f3b198602ab6621927e85f25b6e3671b8bc29a 100755 --- a/sohstationviewer/view/main_window.py +++ b/sohstationviewer/view/main_window.py @@ -500,6 +500,7 @@ class MainWindow(QtWidgets.QMainWindow, UIMainWindow): for item in self.open_files_list.selectedItems(): self.rt130_log_files.append(Path(item.file_path)) self.data_type = 'RT130' + self.is_multiplex = False elif self.rt130_das_dict != {}: # create selected_rt130_paths from the selected rt130 das names for item in self.open_files_list.selectedItems(): @@ -535,7 +536,7 @@ class MainWindow(QtWidgets.QMainWindow, UIMainWindow): msg = "No directories have been selected." raise Exception(msg) - if self.rt130_das_dict == {}: + if self.rt130_das_dict == {} and not self.log_checkbox.isChecked(): self.data_type, self.is_multiplex = detect_data_type( self.list_of_dir)