summaryrefslogtreecommitdiff
path: root/ui/control_editor.py
diff options
context:
space:
mode:
authorChristian Kolset <christian.kolset@gmail.com>2026-04-21 22:58:30 -0600
committerChristian Kolset <christian.kolset@gmail.com>2026-04-21 22:58:30 -0600
commit4db119fb9c04428e7aef6f1a278c1639aa867baf (patch)
treee0e0645559637e593f1bbfb9d713256028668527 /ui/control_editor.py
parent97e15f69b835af03b071c4eeb4547c65a02e6f80 (diff)
Major update to Output control
Including: - Control panel - Change status of simulation after devices creation. - Arduino serial conflict with multiple channels. - Claude instructions. - Update to arduino on board code.
Diffstat (limited to 'ui/control_editor.py')
-rw-r--r--ui/control_editor.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/control_editor.py b/ui/control_editor.py
index 93b8110..4d18aef 100644
--- a/ui/control_editor.py
+++ b/ui/control_editor.py
@@ -233,7 +233,7 @@ class ControlEditorDialog(QDialog):
btn_row = QHBoxLayout(); btn_row.addStretch()
cancel = QPushButton("Cancel"); cancel.clicked.connect(self.reject)
- ok = QPushButton("Save Control")
+ ok = QPushButton("Create Control")
ok.setObjectName("applyButton"); ok.setDefault(True)
ok.clicked.connect(self._on_ok)
btn_row.addWidget(cancel); btn_row.addWidget(ok)