fixed status icons in the top left corner
This commit is contained in:
parent
d085f382c7
commit
e1f9554212
1 changed files with 3 additions and 3 deletions
|
@ -325,14 +325,14 @@ Window {
|
|||
Repeater {
|
||||
id: connectedExtensionsRep
|
||||
anchors.fill: parent
|
||||
model: speedBackend.scStwClient.extensions.lenght
|
||||
model: speedBackend.scStwClient.extensions.length
|
||||
delegate: ConnectionIcon {
|
||||
id: buzzerConnIcon
|
||||
status: speedBackend.extensions[index]["state"]
|
||||
status: speedBackend.scStwClient.extensions[index]["state"]
|
||||
|
||||
source: {
|
||||
var source
|
||||
switch(speedBackend.extensions[index]["type"]){
|
||||
switch(speedBackend.scStwClient.extensions[index]["type"]){
|
||||
case "STARTPAD":
|
||||
source = appTheme.style.startpadIcon
|
||||
break
|
||||
|
|
Reference in a new issue