qml: fix errors

This commit is contained in:
Vaxry 2024-10-13 21:37:49 +01:00
parent df54301136
commit 3ead3bf94e
1 changed files with 2 additions and 2 deletions

View File

@ -152,7 +152,7 @@ ApplicationWindow {
Layout.rightMargin: 60 Layout.rightMargin: 60
Text { Text {
visible: hsi.getUserAt().length() > 0 visible: hsi.getUserAt().length > 0
text: "User: " + hsi.getUserAt() text: "User: " + hsi.getUserAt()
Layout.maximumWidth: _width - 120 Layout.maximumWidth: _width - 120
color: system.windowText color: system.windowText
@ -162,7 +162,7 @@ ApplicationWindow {
} }
Text { Text {
visible: hsi.getModel().length() > 0 visible: hsi.getModel().length > 0
text: "Model: " + hsi.getModel() text: "Model: " + hsi.getModel()
Layout.maximumWidth: _width - 120 Layout.maximumWidth: _width - 120
color: system.windowText color: system.windowText