mirror of
https://github.com/hyprwm/hyprsysteminfo.git
synced 2024-11-21 21:45:59 +01:00
qml: fix errors
This commit is contained in:
parent
df54301136
commit
3ead3bf94e
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue