I just realized I skipped adding the default expression property to sequence.
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Ad5001 2022-01-27 23:18:29 +01:00
parent 75db744caa
commit cdac8d3dc2
Signed by: Ad5001
GPG key ID: EF45F9C6AFE20160

View file

@ -30,15 +30,16 @@ class Sequence extends Common.ExecutableObject {
static displayTypeMultiple(){return qsTr('Sequences')} static displayTypeMultiple(){return qsTr('Sequences')}
static properties() {return { static properties() {return {
[QT_TRANSLATE_NOOP('prop','drawPoints')]: 'boolean', [QT_TRANSLATE_NOOP('prop','drawPoints')]: 'boolean',
[QT_TRANSLATE_NOOP('prop','drawDashedLines')]: 'boolean', [QT_TRANSLATE_NOOP('prop','drawDashedLines')]: 'boolean',
'comment1': QT_TRANSLATE_NOOP( [QT_TRANSLATE_NOOP('prop','defaultExpression')]: new P.Dictionary('string', 'int', /^.+$/, /^\d+$/, '{name}[n+', '] = ', true),
'comment', 'comment1': QT_TRANSLATE_NOOP(
'Note: Use %1[n] to refer to %1ₙ, %1[n+1] for %1ₙ₊₁...' 'comment',
), 'Note: Use %1[n] to refer to %1ₙ, %1[n+1] for %1ₙ₊₁...'
[QT_TRANSLATE_NOOP('prop','baseValues')]: new P.Dictionary('string', 'int', /^.+$/, /^\d+$/, '{name}[', '] = '), ),
[QT_TRANSLATE_NOOP('prop','labelPosition')]: P.Enum.Position, [QT_TRANSLATE_NOOP('prop','baseValues')]: new P.Dictionary('string', 'int', /^.+$/, /^\d+$/, '{name}[', '] = '),
[QT_TRANSLATE_NOOP('prop','labelX')]: 'number', [QT_TRANSLATE_NOOP('prop','labelPosition')]: P.Enum.Position,
[QT_TRANSLATE_NOOP('prop','labelX')]: 'number',
}} }}
constructor(name = null, visible = true, color = null, labelContent = 'name + value', constructor(name = null, visible = true, color = null, labelContent = 'name + value',