Skip to content

Commit

Permalink
qml: fix errors
Browse files Browse the repository at this point in the history
  • Loading branch information
vaxerski committed Oct 13, 2024
1 parent df54301 commit 3ead3bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions qml/main.qml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 3ead3bf

Please sign in to comment.