From 90673e8b877efb26cb10d6b606189533ff6574b7 Mon Sep 17 00:00:00 2001 From: Xinyu Hou Date: Thu, 15 Sep 2016 16:26:13 -0400 Subject: [PATCH] #123 Added note about disabling clipboard --- src/lib/server/Server.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/lib/server/Server.cpp b/src/lib/server/Server.cpp index 4e1a728a..af958889 100644 --- a/src/lib/server/Server.cpp +++ b/src/lib/server/Server.cpp @@ -1171,6 +1171,10 @@ Server::processOptions() } else if (id == kOptionClipboardSharing) { m_enableClipboard = (value != 0); + + if (m_enableClipboard == false) { + LOG((CLOG_NOTE "clipboard sharing is disabled")); + } } } if (m_relativeMoves && !newRelativeMoves) {