Skip to content

Commit

Permalink
ソング:水平方向のズームの上限と下限を変更 (#2226)
Browse files Browse the repository at this point in the history
水平方向のズームの上限と下限を変更
  • Loading branch information
sigprogramming authored Aug 16, 2024
1 parent 332a2a7 commit 29d48be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sing/viewHelper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import { calculateHash } from "@/sing/utility";
const BASE_X_PER_QUARTER_NOTE = 120;
const BASE_Y_PER_SEMITONE = 30;

export const ZOOM_X_MIN = 0.2;
export const ZOOM_X_MAX = 1;
export const ZOOM_X_MIN = 0.15;
export const ZOOM_X_MAX = 2;
export const ZOOM_X_STEP = 0.05;
export const ZOOM_Y_MIN = 0.5;
export const ZOOM_Y_MAX = 1.5;
Expand Down

0 comments on commit 29d48be

Please sign in to comment.