fix(cathrin): Allow negative values for backDrop and frontRise options
Fixes #6563
This commit is contained in:
parent
10c6137224
commit
4e89ab323e
3 changed files with 12 additions and 2 deletions
|
@ -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
|
||||||
|
|
|
@ -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:
|
||||||
|
|
|
@ -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' },
|
||||||
},
|
},
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue