Merge branch 'fix/processing' into 'main'
fix: Fixed error regarding image processing. See merge request CodeByMrFinchum/OptimaLab35!38
This commit is contained in:
commit
b2e323d00e
2 changed files with 6 additions and 3 deletions
|
@ -1,5 +1,8 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
## 0.13.1
|
||||||
|
fix process
|
||||||
|
## 0.13
|
||||||
|
requrements
|
||||||
## 0.12.x
|
## 0.12.x
|
||||||
### 0.12.6: Disabled app restart on Windows
|
### 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`.
|
- The app can not restart properly on Windows, so the restart button has been hidden when the OS is `nt`.
|
||||||
|
|
|
@ -34,7 +34,7 @@ from PySide6.QtWidgets import (
|
||||||
QFileDialog,
|
QFileDialog,
|
||||||
QHBoxLayout,
|
QHBoxLayout,
|
||||||
QSpinBox,
|
QSpinBox,
|
||||||
QProgressBar,
|
#QProgressBar,
|
||||||
)
|
)
|
||||||
|
|
||||||
from PySide6.QtGui import QPixmap, QRegularExpressionValidator, QIcon
|
from PySide6.QtGui import QPixmap, QRegularExpressionValidator, QIcon
|
||||||
|
@ -910,7 +910,7 @@ class ImageProcessorRunnable(QRunnable):
|
||||||
self.signals = WorkerSignals()
|
self.signals = WorkerSignals()
|
||||||
self.signals.progress.connect(progress_callback)
|
self.signals.progress.connect(progress_callback)
|
||||||
self.o = OptimaManager()
|
self.o = OptimaManager()
|
||||||
self.u = Utilities()
|
self.u = Utilities(os.path.expanduser("~/.config/OptimaLab35/"))
|
||||||
|
|
||||||
def run(self):
|
def run(self):
|
||||||
input_folder = self.settings["input_folder"]
|
input_folder = self.settings["input_folder"]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue