From 26d50d1e184eeaa2e030b4624ea8b4d2a2f21788 Mon Sep 17 00:00:00 2001 From: Jamie Newbon <48688400+Jnewbon@users.noreply.github.com> Date: Thu, 22 Aug 2019 10:10:46 +0100 Subject: [PATCH] #6541 Fixed connected info text to include without TLS encryption --- src/gui/src/MainWindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/src/MainWindow.cpp b/src/gui/src/MainWindow.cpp index 5fdcc142..038cc781 100644 --- a/src/gui/src/MainWindow.cpp +++ b/src/gui/src/MainWindow.cpp @@ -975,7 +975,7 @@ void MainWindow::setSynergyState(qSynergyState state) setStatus(tr("Synergy is connected (with %1)").arg(m_SecureSocketVersion)); } else { - setStatus(tr("Synergy is running (without %1)").arg(m_SecureSocketVersion)); + setStatus(tr("Synergy is running (without TLS encryption)").arg(m_SecureSocketVersion)); } break; }