Skip to content
Snippets Groups Projects
Commit 7438502a authored by payno's avatar payno
Browse files

app - stitching: set the stitching output as a full path relative to the current working directory

close #1244

# Conflicts:
#	src/tomwer/app/stitching/common.py

# Conflicts:
#	src/tomwer/app/stitching/common.py

# Conflicts:
#	src/tomwer/app/stitching/common.py
#	src/tomwer/gui/utils/inputwidget.py
parent 3e956289
No related branches found
No related tags found
No related merge requests found
...@@ -437,7 +437,13 @@ class OutputVolumeDefinition(qt.QWidget): ...@@ -437,7 +437,13 @@ class OutputVolumeDefinition(qt.QWidget):
# output file or folder # output file or folder
self._outputFileLabel = qt.QLabel("", self) self._outputFileLabel = qt.QLabel("", self)
self.layout().addWidget(self._outputFileLabel, 1, 0, 1, 1) self.layout().addWidget(self._outputFileLabel, 1, 0, 1, 1)
self._outputFileQLE = QLFileSystem("", parent=None) self._outputFileQLE = QLFileSystem(
os.path.join(
os.getcwd(),
"stitched_volume.hdf5",
),
parent=None,
)
self.layout().addWidget(self._outputFileQLE, 1, 1, 1, 1) self.layout().addWidget(self._outputFileQLE, 1, 1, 1, 1)
self._selectPB = qt.QPushButton("select", self) self._selectPB = qt.QPushButton("select", self)
self.layout().addWidget(self._selectPB, 1, 2, 1, 1) self.layout().addWidget(self._selectPB, 1, 2, 1, 1)
......
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