Allow 1.5x zoom. Used to top out at 1x

This commit is contained in:
Dean 2024-10-25 12:57:31 +01:00
parent acf743ed8c
commit c3bf7ed9b6
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@
import { selectedAutomation, automationStore } from "stores/builder"
export function zoomIn() {
const scale = Number(Math.min($view.scale + 0.1, 1).toFixed(2))
const scale = Number(Math.min($view.scale + 0.1, 1.5).toFixed(2))
view.update(state => ({
...state,
scale,