Skip to content

Commit

Permalink
fixed flipping
Browse files Browse the repository at this point in the history
  • Loading branch information
Jarhead committed Mar 4, 2023
1 parent ca82af2 commit 1228825
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
}

group 'jarhead'
version '1.4.3'
version '1.4.4'


repositories {
Expand Down
1 change: 1 addition & 0 deletions src/main/java/jarhead/ButtonPanel.java
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ public void actionPerformed(ActionEvent e) {
Node node = getCurrentManager().get(i);
node.y = 144*main.scale-node.y;
node.splineHeading = 180-node.splineHeading;
node.robotHeading = 180-node.robotHeading;
getCurrentManager().set(i, node);
}
main.drawPanel.repaint();
Expand Down

0 comments on commit 1228825

Please sign in to comment.