WS: Add strip mute buttons to mixer demo

This commit is contained in:
Luciano Iam 2020-08-16 15:03:17 +02:00 committed by Robin Gareus
parent 75338ad4c5
commit 864bcf09b7
No known key found for this signature in database
GPG key ID: A090BCE02CF57F04
7 changed files with 169 additions and 45 deletions

View file

@ -55,6 +55,19 @@ export class BaseContainer extends BaseWidget {
}
export class BaseDialog extends BaseContainer {
constructor () {
super();
this.children = [];
}
show () {
// empty
}
}
export class BaseControl extends BaseWidget {
get value () {