1
1
mirror of https://github.com/KenanZhu/AutoLibrary.git synced 2026-08-02 14:19:35 +08:00

style(gui): 统一非Qt控件变量为蛇形命名

This commit is contained in:
2026-06-25 13:17:36 +08:00
parent 6a9c662287
commit 0069d5274b
16 changed files with 606 additions and 617 deletions
+2 -2
View File
@@ -35,7 +35,7 @@ class ALAutoScriptOrchDialog(QDialog):
super().__init__(parent)
self._blocks = []
self._varMgr = VariableManager(self)
self._var_mgr = VariableManager(self)
self.setupUi()
self.connectSignals()
@@ -91,7 +91,7 @@ class ALAutoScriptOrchDialog(QDialog):
):
Block = ConditionalBlock(
len(self._blocks), self._varMgr, parent=self
len(self._blocks), self._var_mgr, parent=self
)
Block.DeleteBlockBtn.clicked.connect(lambda: self.removeBlock(Block))
Block.TypeCombo.currentIndexChanged.connect(self.updateBlockTypeRestrictions)