1
0
mirror of https://github.com/ciromattia/kcc synced 2026-06-24 15:24:02 +00:00

option: create temporary files directory on source file drive (#1296)

This commit is contained in:
Alex Xu
2026-04-15 21:40:03 -07:00
committed by GitHub
parent e7b7054b0e
commit cd2eeb4d0f
5 changed files with 27 additions and 1 deletions
+3
View File
@@ -341,6 +341,8 @@ class WorkerThread(QThread):
options.metadatatitle = 2
if GUI.deleteBox.isChecked():
options.delete = True
if GUI.tempDirBox.isChecked():
options.tempdir = True
if GUI.spreadShiftBox.isChecked():
options.spreadshift = True
if GUI.fileFusionBox.isChecked():
@@ -1090,6 +1092,7 @@ class KCCGUI(KCC_ui.Ui_mainWindow):
'widthBox': GUI.widthBox.value(),
'heightBox': GUI.heightBox.value(),
'deleteBox': GUI.deleteBox.checkState(),
'tempDirBox': GUI.tempDirBox.checkState(),
'spreadShiftBox': GUI.spreadShiftBox.checkState(),
'fileFusionBox': GUI.fileFusionBox.checkState(),
'defaultOutputFolderBox': GUI.defaultOutputFolderBox.checkState(),