Hello,
FYI. GUI has a typo in the Preprocessing Base Path select dialog button.
when it opens it display Select the coordination path.
I guess openBasePath should be
def openBasePath(self):
self.c2l_basePath = QFileDialog.getExistingDirectory(self, 'Select the base path')
if self.c2l_basePath != "":
self.ui.edit_base_path.setText(self.c2l_basePath)
self.c2l_show_info(f"Base dir: {self.c2l_basePath}")
instead of
def openBasePath(self):
self.c2l_basePath = QFileDialog.getExistingDirectory(self, 'Select the coordination path')
if self.c2l_basePath != "":
self.ui.edit_base_path.setText(self.c2l_basePath)
self.c2l_show_info(f"Base dir: {self.c2l_basePath}")
regards
Eric
Hello,
FYI. GUI has a typo in the Preprocessing Base Path select dialog button.
when it opens it display
Select the coordination path.I guess
openBasePathshould beinstead of
regards
Eric