fix: Fixed error regarding image processing.

This commit is contained in:
Mr Finchum 2025-02-11 18:58:19 +01:00
parent 0d0feff502
commit dc132bffc9
2 changed files with 6 additions and 3 deletions

View file

@ -1,5 +1,8 @@
# Changelog
## 0.13.1
fix process
## 0.13
requrements
## 0.12.x
### 0.12.6: Disabled app restart on Windows
- The app can not restart properly on Windows, so the restart button has been hidden when the OS is `nt`.

View file

@ -34,7 +34,7 @@ from PySide6.QtWidgets import (
QFileDialog,
QHBoxLayout,
QSpinBox,
QProgressBar,
#QProgressBar,
)
from PySide6.QtGui import QPixmap, QRegularExpressionValidator, QIcon
@ -910,7 +910,7 @@ class ImageProcessorRunnable(QRunnable):
self.signals = WorkerSignals()
self.signals.progress.connect(progress_callback)
self.o = OptimaManager()
self.u = Utilities()
self.u = Utilities(os.path.expanduser("~/.config/OptimaLab35/"))
def run(self):
input_folder = self.settings["input_folder"]