Skip to content

Commit

Permalink
ran formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
Lewy Seiden committed Dec 29, 2023
1 parent 10dd59a commit 9079e2d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/field/svg/FieldOverlayRoot.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ class FieldOverlayRoot extends Component<Props, State> {
)}
{layers[ViewLayers.Grid] && <FieldGrid></FieldGrid>}
<FieldAxisLines></FieldAxisLines>
{/* Obstacle and waypoint mouse capture*/ }
{/* Obstacle and waypoint mouse capture*/}
{layers[ViewLayers.Waypoints] &&
this.context.model.uiState.isNavbarWaypointSelected() && (
<circle
Expand Down
4 changes: 3 additions & 1 deletion src/document/DocumentManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,9 @@ export class DocumentManager {
this.model.uiState.setSelectedNavbarItem(i);
});
}
hotkeys("0", () => {this.model.uiState.setSelectedNavbarItem(9)});
hotkeys("0", () => {
this.model.uiState.setSelectedNavbarItem(9);
});
hotkeys("-", () => this.model.uiState.setSelectedNavbarItem(10));
// set current waypoint type
for (let i = 0; i < 4; i++) {
Expand Down

0 comments on commit 9079e2d

Please # to comment.