Reduce the number of delays presets and make "seconds" non-bold.

This commit is contained in:
László Monda
2017-10-29 00:38:20 +02:00
parent d1c8ef94fc
commit dc0c2862b3
2 changed files with 2 additions and 2 deletions

View File

@@ -16,7 +16,7 @@
class="form-control"
[ngModel]="delay"
(ngModelChange)="setDelay(macroDelayInput.value)">
<label>seconds</label>
seconds
</div>
</div>
</div>

View File

@@ -23,7 +23,7 @@ export class MacroDelayTabComponent extends MacroBaseComponent implements OnInit
@Input() macroAction: DelayMacroAction;
@ViewChild('macroDelayInput') input: ElementRef;
presets: number[] = [0.3, 0.5, 0.8, 1, 2, 3, 4, 5];
presets: number[] = [0.1, 0.5, 1, 5, 10];
get delay(): number {
return this._delay;