mirror of
https://github.com/tuxdotrs/tshell.git
synced 2026-09-19 10:39:04 +05:30
12 lines
216 B
QML
12 lines
216 B
QML
pragma ComponentBehavior: Bound
|
|
|
|
import qs.ui
|
|
import qs.services
|
|
|
|
BarButton {
|
|
hoverHighlight: false
|
|
pointerCursor: false
|
|
label: Home.latency >= 0 ? `${Home.latency} ms` : "NA"
|
|
iconSource: Home.icon
|
|
}
|