1
0
Fork 0

fix(cathrin): Allow negative values for backDrop and frontRise options

Fixes #6563
This commit is contained in:
joostdecock 2024-04-28 16:05:36 +02:00
parent 10c6137224
commit 4e89ab323e
3 changed files with 12 additions and 2 deletions

View file

@ -9,6 +9,13 @@
- Always load plugin-bust due to its changes in how it handle conditionality. - Always load plugin-bust due to its changes in how it handle conditionality.
### cathrin
#### Changed
- Allow negative values in backDrop option
- Allow negative values for the frontRise options
### huey ### huey
#### Changed #### Changed

View file

@ -6,6 +6,9 @@ Unreleased:
Changed: Changed:
brian: brian:
- Always load plugin-bust due to its changes in how it handle conditionality. - Always load plugin-bust due to its changes in how it handle conditionality.
cathrin:
- Allow negative values in backDrop option
- Allow negative values for the frontRise options
huey: huey:
- The lengthBonus option default was changed from 0% to 15%. Fixes #6596 - The lengthBonus option default was changed from 0% to 15%. Fixes #6596
onyx: onyx:

View file

@ -98,8 +98,8 @@ export const base = {
panels: { list: ['11', '13'], dflt: '13', menu: 'fit' }, panels: { list: ['11', '13'], dflt: '13', menu: 'fit' },
backOpening: { pct: 4, min: 3, max: 10, menu: 'style' }, backOpening: { pct: 4, min: 3, max: 10, menu: 'style' },
backRise: { pct: 15, min: 1, max: 25, menu: 'style' }, backRise: { pct: 15, min: 1, max: 25, menu: 'style' },
backDrop: { pct: 2, min: 0, max: 5, menu: 'style' }, backDrop: { pct: 2, min: -10, max: 5, menu: 'style' },
frontRise: { pct: 4, min: 0.1, max: 8, menu: 'style' }, frontRise: { pct: 4, min: -10, max: 8, menu: 'style' },
frontDrop: { pct: 5, min: 0, max: 10, menu: 'style' }, frontDrop: { pct: 5, min: 0, max: 10, menu: 'style' },
hipRise: { pct: 5, min: 0, max: 15, menu: 'style' }, hipRise: { pct: 5, min: 0, max: 15, menu: 'style' },
}, },