Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 402ae13

Browse files
author
Alberto Iannaccone
committedOct 6, 2022
fix interface scale step
1 parent 4a64138 commit 402ae13

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎arduino-ide-extension/src/browser/dialogs/settings/settings-component.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ const maxScale = InterfaceScale.ZoomLevel.toPercentage(
3131
const minScale = InterfaceScale.ZoomLevel.toPercentage(
3232
InterfaceScale.ZoomLevel.MIN
3333
);
34-
const scaleStep = InterfaceScale.ZoomLevel.Step.fromPercentage(
34+
const scaleStep = InterfaceScale.ZoomLevel.Step.toPercentage(
3535
InterfaceScale.ZoomLevel.STEP
3636
);
3737

0 commit comments

Comments
 (0)
Please sign in to comment.