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 <noreply@anthropic.com>
This commit is contained in:
parent
683a8a6d8f
commit
bc970fb9f7
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Reference in New Issue