Skip to content

Commit 9912cd6

Browse files
authored
Merge pull request #268 from Steve-Mcl/update-wiring-tips
Update wiring info
2 parents 2a312c7 + aff344b commit 9912cd6

File tree

6 files changed

+84
-1
lines changed

6 files changed

+84
-1
lines changed

css/simplegrid.css

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,3 +147,26 @@ body {
147147
padding-right: 0px !important;
148148
}
149149
}
150+
151+
152+
153+
.row {
154+
display: flex;
155+
flex-direction: row;
156+
flex-wrap: wrap;
157+
width: 100%;
158+
}
159+
160+
.column {
161+
display: flex;
162+
flex-direction: column;
163+
flex-basis: 100%;
164+
flex: 1
165+
}
166+
167+
.double-column {
168+
display: flex;
169+
flex-direction: column;
170+
flex-basis: 100%;
171+
flex: 2
172+
}
28.9 KB
Loading
69.5 KB
Loading
13.3 KB
Loading
304 KB
Loading

docs/user-guide/editor/workspace/wires.md

Lines changed: 61 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,66 @@ the wire is deleted.
5151
If a port has multiple wires connected to it, if none of them is selected when
5252
button is pressed with the `Shift` key held, all of the wires will move.
5353

54+
#### Selecting multiple wires
55+
56+
You can also select multiple wires by holding <kbd>ctrl</kbd> while clicking on them.
57+
58+
When you select multiple nodes, we also highlight any wires between them. This can make it easier to follow a flow once you have selected it.
59+
60+
<div class="figure">
61+
<img src="../images/select-multiple-wires.png" alt="">
62+
<p class="caption">Selecting multiple wires</p>
63+
</div>
64+
65+
5466
#### Deleting wires
5567

56-
To delete a wire, first select it by clicking on it and then press the `delete` key.
68+
1. Select one or more wires
69+
1. To select a single wire, left click 1 wire.
70+
1. To select multiple wires, left click 1 wire then while holding <kbd>ctrl/⌘</kbd>, click on the other wires.
71+
1. Press the <kbd>delete</kbd> key
72+
73+
74+
#### Slicing wires
75+
You can also remove wires by slicing through them. You do this by holding the ctrl (or cmd) key, then dragging the mouse with the right-hand button pressed:
76+
77+
<div class="figure">
78+
<img src="../images/slicing-wires.gif" alt="">
79+
<p class="caption">Slicing wires</p>
80+
</div>
81+
82+
83+
#### Detaching nodes
84+
85+
##### Delete Node, keep wires
86+
You can delete a node from the middle of a flow and have the wiring automatically repair itself in the background:
87+
88+
89+
<div class="row">
90+
<div class="figure column">
91+
<img src="../images/delete-node-keep-wires.gif" alt="">
92+
<p class="caption">Delete Node, keep wires</p>
93+
</div>
94+
<table class="action-ref double-column">
95+
<tr><th colspan="2">Reference</th></tr>
96+
<tr><td>Action</td><td><code>core:core:delete-selection-and-reconnect</code></td></tr>
97+
<tr><td>Key shortcut</td><td><kbd>Ctrl/⌘-delete</kbd></td></tr>
98+
</table>
99+
</div>
100+
101+
##### Detach Node from wires
102+
You can also detach a node from the flow without deleting it:
103+
104+
<div class="row">
105+
<div class="figure column">
106+
<img src="../images/detatch-node-from-wire.gif" alt="">
107+
<p class="caption">Detach Node from wires</p>
108+
</div>
109+
<table class="action-ref double-column">
110+
<tr><th colspan="2">Reference</th></tr>
111+
<tr><td>Action</td><td><code>core:detach-selected-nodes</code></td></tr>
112+
<tr><td>Key shortcut</td><td><code>*Not assigned</code></td></tr>
113+
</table>
114+
</div>
115+
116+
<i>\* There is no default shortcut for **Detach Node from wires**, but you can assign one yourself in the Keyboard pane of the Settings dialog.</i>

0 commit comments

Comments
 (0)