1
0
mirror of https://github.com/ciromattia/kcc synced 2026-07-14 08:46:10 +00:00

Margins color detection now handles every file

This commit is contained in:
Paweł Jastrzębski
2013-09-15 16:24:14 +02:00
parent a484582b70
commit a8c3ef7d00
8 changed files with 74 additions and 66 deletions
+4 -2
View File
@@ -129,12 +129,14 @@ class WorkerThread(QtCore.QThread):
argv.append("--noprocessing")
if GUI.NoRotateBox.isChecked():
argv.append("--nosplitrotate")
if GUI.BorderBox.isChecked():
argv.append("--blackborders")
if GUI.UpscaleBox.checkState() == 1:
argv.append("--stretch")
elif GUI.UpscaleBox.checkState() == 2:
argv.append("--upscale")
if GUI.BorderBox.checkState() == 1:
argv.append("--whiteborders")
elif GUI.BorderBox.checkState() == 2:
argv.append("--blackborders")
if GUI.NoDitheringBox.isChecked():
argv.append("--forcepng")
if GUI.WebtoonBox.isChecked():