Skip to content

Commit

Permalink
feat: zoom out with underscore key
Browse files Browse the repository at this point in the history
  • Loading branch information
oscarlorentzon committed Feb 4, 2025
1 parent 78e679b commit 876e54c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/component/keyboard/KeyZoomHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ export class KeyZoomHandler extends HandlerBase<KeyboardConfiguration> {
delta = 1;
break;
case "-":
case "_":
delta = -1;
break;
default:
Expand Down

0 comments on commit 876e54c

Please sign in to comment.