From 27ebf558a678b548478c78c1eaca583578bc8181 Mon Sep 17 00:00:00 2001 From: Lorn Potter Date: Wed, 30 Jul 2014 15:01:00 +1000 Subject: [PATCH] [connectionagent] Make sure to popup conneciton dialog only when roaming and always ask is selected. Fixes JB21640 --- connd/qconnectionagent.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/connd/qconnectionagent.cpp b/connd/qconnectionagent.cpp index 84d156c..4cb634c 100644 --- a/connd/qconnectionagent.cpp +++ b/connd/qconnectionagent.cpp @@ -660,7 +660,7 @@ void QConnectionAgent::serviceAutoconnectChanged(bool on) mobileConnected = true; } } - if (!mobileConnected && askRoaming() && !flightModeSuppression) { + if (!mobileConnected && service->roaming() && askRoaming() && !flightModeSuppression) { Q_EMIT connectionRequest(); return; }