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