Commit e4368027 authored by Aleksi Suomalainen's avatar Aleksi Suomalainen

[statusbar] Concatenate operator text.

parent 2261cec5
...@@ -123,7 +123,7 @@ Item { ...@@ -123,7 +123,7 @@ Item {
font.pointSize: 6 font.pointSize: 6
font.bold: true font.bold: true
wrapMode: Text.ElideRight wrapMode: Text.ElideRight
text: (cellularNetworkName !== "") ? cellularNetworkName.value.toUpperCase() : "N/A" text: (cellularNetworkName !== "") ? cellularNetworkName.value.substring(0,3).toUpperCase() : "N/A"
} }
Label { Label {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment