fix: default project main grid's zoom level to 2x

This commit is contained in:
Xiaohan-Tian
2026-05-24 23:20:49 -07:00
parent af0b816cbf
commit 27948771de
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -109,10 +109,10 @@ describe('KGProjectStorage', () => {
return new KGProject(name, 16, 0, 120);
}
it('defaults both zoom levels to 1 on a fresh project', () => {
it('defaults the main-grid zoom to 2 and piano-roll zoom to 1 on a fresh project', () => {
const project = new KGProject();
expect(project.getBarWidthMultiplier()).toBe(1);
expect(project.getBarWidthMultiplier()).toBe(2);
expect(project.getPianoRollZoom()).toBe(1);
});