We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 77fb06d commit b69149cCopy full SHA for b69149c
lib/configsetup.inc.php
@@ -1519,9 +1519,9 @@
1519
'placeholder' => $defaultConfig['print']['time'],
1520
'name' => 'print[time]',
1521
'value' => $config['print']['time'],
1522
- 'range_min' => 250,
1523
- 'range_max' => 20000,
1524
- 'range_step' => 250,
+ 'range_min' => 500,
+ 'range_max' => 60000,
+ 'range_step' => 500,
1525
'unit' => 'milliseconds',
1526
],
1527
'print_limit' => [
src/Configuration/PhotoboothConfiguration.php
@@ -204,8 +204,8 @@ protected function addPrint(): NodeDefinition
204
->end()
205
206
->integerNode('time')
207
- ->min(250)
208
- ->max(20000)
+ ->min(500)
+ ->max(60000)
209
->defaultValue(5000)
210
->beforeNormalization()
211
->ifString()
0 commit comments