Library migration #36

Merged
dorian merged 62 commits from library_migration into master 2024-10-17 17:52:36 +02:00
Showing only changes of commit e1f9554212 - Show all commits

View file

@ -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