remove obsolete kontor-gui

This commit is contained in:
2026-01-30 22:59:31 +01:00
parent 182d77354e
commit 99d3756da7
28 changed files with 0 additions and 1108 deletions
-18
View File
@@ -1,18 +0,0 @@
from PySide6.QtWidgets import QProgressBar
class ProgressUpdate:
def __init__(self, progress: QProgressBar):
self.start = 0
self.end = 0
self.current = 0
self.progress = progress
def start(self, start_value, end_value):
self.start = start_value
self.end = end_value
self.current = start_value
self.progress.update()
def update(self, current):
self.progress.update()