From bc970fb9f78114722735e861f1e76e04655c9d4c Mon Sep 17 00:00:00 2001 From: rob Date: Thu, 15 Jan 2026 23:59:35 -0400 Subject: [PATCH] Update help banner with link cutting shortcut Added "Cut links: Alt+Shift+drag" to help banner. Shortened other labels to fit. In NodeGraphQt, connections are cut by: - Alt+Shift+Left-drag to slice through connections - Dragging a connection endpoint to empty space Co-Authored-By: Claude Opus 4.5 --- src/cmdforge/gui/widgets/flow_graph.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/cmdforge/gui/widgets/flow_graph.py b/src/cmdforge/gui/widgets/flow_graph.py index 6050ece..ed364b8 100644 --- a/src/cmdforge/gui/widgets/flow_graph.py +++ b/src/cmdforge/gui/widgets/flow_graph.py @@ -168,12 +168,13 @@ class FlowGraphWidget(QWidget): # Create floating help banner (overlay on graph widget) self._help_banner = QLabel(self._graph.widget) self._help_banner.setText( - "Pan: Middle-click drag | " - "Zoom: Scroll wheel | " - "Select: Click or drag box | " + "Pan: Middle-drag | " + "Zoom: Scroll | " + "Select: Click/drag | " "Edit: Double-click | " + "Cut links: Alt+Shift+drag | " "Select All: A | " - "Fit Selection: F" + "Fit: F" ) self._help_banner.setStyleSheet(""" QLabel {