diff options
author | Matt Porter <mporter@konsulko.com> | 2018-07-30 21:10:29 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@automotivelinux.org> | 2018-07-30 21:10:29 +0000 |
commit | ee58ffc1da71d296fdae869dbaaa74a1c4a6c664 (patch) | |
tree | c67348444246644e98a56076337515059560f6a1 /network/wifinetworkmodel.cpp | |
parent | 3f7c96d135e64e22075b640e9ee301e444cd1582 (diff) | |
parent | 0c4d8bf4e0af08563c907148216ffdb485dd1922 (diff) |
Merge "network: add wifiStrength property"flounder_5.99.6flounder_5.99.5flounder_5.99.4flounder_5.99.3flounder/5.99.6flounder/5.99.5flounder/5.99.4flounder/5.99.35.99.65.99.55.99.45.99.3
Diffstat (limited to 'network/wifinetworkmodel.cpp')
-rw-r--r-- | network/wifinetworkmodel.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/network/wifinetworkmodel.cpp b/network/wifinetworkmodel.cpp index 8a83919..3cfd7dd 100644 --- a/network/wifinetworkmodel.cpp +++ b/network/wifinetworkmodel.cpp @@ -163,6 +163,9 @@ void WifiNetworkModel::updateProperties(QString service, QJsonObject properties) if (properties.contains("strength")) { network->setStrength(properties.value("strength").toInt()); emit dataChanged(indexOf(network), indexOf(network)); + if ((network->state() == "ready") || + (network->state() == "online")) + emit strengthChanged(network->strength()); } } } |