summaryrefslogtreecommitdiff
path: root/ui/windows/plot_window.py
diff options
context:
space:
mode:
authorChristian Kolset <christian.kolset@gmail.com>2026-04-22 14:50:13 -0600
committerChristian Kolset <christian.kolset@gmail.com>2026-04-22 14:50:13 -0600
commit99445c6fd2fd4f15df828c79600b96b80fa1cfa6 (patch)
tree22c9933fc6bb942172a1f456bef7a35ec4be1726 /ui/windows/plot_window.py
parent445403fdc61f4e65736dc65a959f119fc096f4c0 (diff)
Added derived signal to be sources of other derived signals.
Fixed derived signal saving profile. Renamed Signals>Pipeline to Signas>Channels and adding/removing channels feature.
Diffstat (limited to 'ui/windows/plot_window.py')
-rw-r--r--ui/windows/plot_window.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/windows/plot_window.py b/ui/windows/plot_window.py
index 1be590a..ea1ba1c 100644
--- a/ui/windows/plot_window.py
+++ b/ui/windows/plot_window.py
@@ -262,7 +262,7 @@ class PaneBlock(QFrame):
pick_row = QHBoxLayout()
self._picker = self._make_picker(); pick_row.addWidget(self._picker,1)
- ab = QPushButton("+ Add Channel"); ab.setObjectName("addTraceBtn")
+ ab = QPushButton("+ Add Signal"); ab.setObjectName("addTraceBtn")
ab.clicked.connect(self._on_add); pick_row.addWidget(ab)
self._tlay.addLayout(pick_row)
outer.addWidget(tr_w)