1
1
mirror of https://github.com/KenanZhu/AutoLibrary.git synced 2026-06-18 07:23:03 +08:00

refactor(ALMainWindow, ALMainWorkers): 重构 Qt 信号函数的命名

This commit is contained in:
2026-01-17 22:32:03 +08:00
parent 735f31830d
commit 6f6b415bff
3 changed files with 21 additions and 21 deletions
+2 -2
View File
@@ -33,7 +33,7 @@ from utils.ConfigWriter import ConfigWriter
class ALConfigWidget(QWidget, Ui_ALConfigWidget):
configWidgetCloseSingal = Signal(dict)
configWidgetIsClosed = Signal(dict)
def __init__(
self,
@@ -126,7 +126,7 @@ class ALConfigWidget(QWidget, Ui_ALConfigWidget):
event: QCloseEvent
):
self.configWidgetCloseSingal.emit(self.__config_paths)
self.configWidgetIsClosed.emit(self.__config_paths)
super().closeEvent(event)