We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5fe965d commit 765e402Copy full SHA for 765e402
ui/src/main/java/edu/wpi/grip/ui/pipeline/StepController.java
@@ -144,22 +144,12 @@ private void deleteStep() {
144
145
@FXML
146
private void moveStepLeft() {
147
- for (InputSocketController input : inputSockets) {
148
- if (!inputSocketMapManager.containsKey(input)) {
149
- inputSocketMapManager.add(input);
150
- }
151
152
- //pipeline.moveStep(step, -1);
+ pipeline.moveStep(step, -1);
153
}
154
155
156
private void moveStepRight() {
157
158
- if (input.getSocket().getConnections().isEmpty()) {
159
- inputSocketMapManager.remove(input);
160
161
162
- //pipeline.moveStep(step, +1);
+ pipeline.moveStep(step, +1);
163
164
165
0 commit comments