feat(simon): Allow negative values for buttonFreeLength option
Fixes #6508 Shout-out to @karlnippoldt for reporting this.
This commit is contained in:
parent
f4f8349e59
commit
5339020a23
3 changed files with 13 additions and 5 deletions
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -13,8 +13,8 @@
|
|||
|
||||
#### Changed
|
||||
|
||||
- Allow negative values in backDrop option
|
||||
- Allow negative values for the frontRise options
|
||||
- Allow negative values in backDrop option. Fixes
|
||||
- Allow negative values for the frontRise options. Fixes
|
||||
|
||||
### huey
|
||||
|
||||
|
@ -53,6 +53,12 @@
|
|||
|
||||
- Always load plugin-bust due to its changes in how it handle conditionality.
|
||||
|
||||
### simon
|
||||
|
||||
#### Changed
|
||||
|
||||
- Allow negative values for the buttonFreeLength option. Fixes
|
||||
|
||||
### simone
|
||||
|
||||
#### Fixed
|
||||
|
|
|
@ -7,8 +7,8 @@ Unreleased:
|
|||
brian:
|
||||
- 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
|
||||
- Allow negative values in backDrop option. Fixes #6563
|
||||
- Allow negative values for the frontRise options. Fixes #6563
|
||||
huey:
|
||||
- The lengthBonus option default was changed from 0% to 15%. Fixes #6596
|
||||
onyx:
|
||||
|
@ -19,6 +19,8 @@ Unreleased:
|
|||
- The plugin will now always be loaded, but will check for each drafted set whether it should make any changes.
|
||||
shelly:
|
||||
- Always load plugin-bust due to its changes in how it handle conditionality.
|
||||
simon:
|
||||
- Allow negative values for the buttonFreeLength option. Fixes #6508
|
||||
tamiko:
|
||||
- Always load plugin-bust due to its changes in how it handle conditionality.
|
||||
wahid:
|
||||
|
|
|
@ -9,7 +9,7 @@ export const boxPleatFold = { pct: 15, min: 10, max: 20, menu: 'advanced' }
|
|||
export const boxPleatWidth = { pct: 7, min: 4, max: 10, menu: 'advanced' }
|
||||
export const roundBack = { pct: 0, min: 0, max: 10, menu: 'fit' }
|
||||
// Front
|
||||
export const buttonFreeLength = { pct: 2, min: 0, max: 15, menu: 'style.closure' }
|
||||
export const buttonFreeLength = { pct: 2, min: -10, max: 15, menu: 'style.closure' }
|
||||
export const buttonholePlacketStyle = {
|
||||
list: ['classic', 'seamless'],
|
||||
dflt: 'seamless',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue