Skip to content

Commit dae7bf3

Browse files
committed
Output path fix
1 parent de6bc92 commit dae7bf3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ui.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ class DropArea : public QLabel {
6464
QFileInfo fileInfo(fileNames[i]);
6565
QString baseName = fileInfo.baseName();
6666
QString path = fileInfo.absolutePath();
67-
QString outName = path + baseName + "_fill." + fileInfo.completeSuffix();
67+
QString outName = path + "/" + baseName + "_fill." + fileInfo.completeSuffix();
6868

6969
// Call the solidify_main function
7070
if (solidify_main(fileNames[i].toStdString(), outName.toStdString())) {

0 commit comments

Comments
 (0)