From 83d1ed48699c441ec6240dcdedfaa624b6877def Mon Sep 17 00:00:00 2001 From: Josh Date: Wed, 14 Aug 2024 16:26:24 -0400 Subject: [PATCH] fix(settings): Use broken lock icon when not using https Fixes #6723 Signed-off-by: Josh --- src/gui/sslbutton.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/sslbutton.cpp b/src/gui/sslbutton.cpp index a2c56e5ef7..c54d0f527e 100644 --- a/src/gui/sslbutton.cpp +++ b/src/gui/sslbutton.cpp @@ -173,7 +173,7 @@ void SslButton::updateAccountState(AccountState *accountState) QSslCipher cipher = account->_sessionCipher; setToolTip(tr("This connection is encrypted using %1 bit %2.\n").arg(cipher.usedBits()).arg(cipher.name())); } else { - setIcon(QIcon(QLatin1String(":/client/theme/lock-http.svg"))); + setIcon(QIcon(QLatin1String(":/client/theme/lock-broken.svg"))); setToolTip(tr("This connection is NOT secure as it is not encrypted.\n")); } }