Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[connectionagent] Make sure to popup conneciton dialog only when
roaming and always ask is selected.
Fixes JB21640
  • Loading branch information
Lorn Potter committed Jul 30, 2014
1 parent d2c3076 commit 27ebf55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion connd/qconnectionagent.cpp
Expand Up @@ -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;
}
Expand Down

0 comments on commit 27ebf55

Please sign in to comment.