diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2012-03-25 17:04:00 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2012-04-12 02:30:01 +0200 |
commit | bedd0a9f31389162bdde6c1654da5a075e2d2902 (patch) | |
tree | 5029d62cb100daac704b819fbb20a5a02ba55824 | |
parent | Add passwords exceptions management widget (diff) | |
download | rekonq-bedd0a9f31389162bdde6c1654da5a075e2d2902.tar.xz |
Consider new PasswordSavingEnabled privacy check
-rw-r--r-- | src/webtab.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/webtab.cpp b/src/webtab.cpp index 718d8b98..63affbf5 100644 --- a/src/webtab.cpp +++ b/src/webtab.cpp @@ -156,6 +156,9 @@ bool WebTab::isPageLoading() void WebTab::createWalletBar(const QString &key, const QUrl &url) { + if (!ReKonfig::passwordSavingEnabled()) + return; + // check if the url is in the wallet blacklist QString urlString = url.toString(); QStringList blackList = ReKonfig::walletBlackList(); |