fix(refboard): reduce distribute H/V min selection from 3 to 2

This commit is contained in:
Hiren Kangad
2026-03-10 04:27:01 +05:30
parent a42d674737
commit 38c457943a
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -143,12 +143,12 @@ export const shortcuts: ShortcutDef[] = [
{
id: 'distribute-h', keys: { key: 'arrowup', ctrl: true, alt: true, shift: true },
category: 'alignment', description: 'Distribute horizontal', needsSelection: true, minSelection: 3,
category: 'alignment', description: 'Distribute horizontal', needsSelection: true, minSelection: 2,
handler: (ctx) => _opUpdate(ctx, ops.distributeHorizontal),
},
{
id: 'distribute-v', keys: { key: 'arrowdown', ctrl: true, alt: true, shift: true },
category: 'alignment', description: 'Distribute vertical', needsSelection: true, minSelection: 3,
category: 'alignment', description: 'Distribute vertical', needsSelection: true, minSelection: 2,
handler: (ctx) => _opUpdate(ctx, ops.distributeVertical),
},