Skip to content

Commit

Permalink
buttons: fix end index for analog segment
Browse files Browse the repository at this point in the history
  • Loading branch information
paradajz committed Jul 4, 2022
1 parent 2d8abdd commit f4fb9f4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/composables/use-grid-segments.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@ export const useGridSegments = (
buttonCount.value -
analogCount.value -
touchScreenCount.value +
analogCount.value,
analogCount.value -
1,
});
}

Expand Down

0 comments on commit f4fb9f4

Please sign in to comment.