#123 Disabled clipboard grab mechanism when clipboard is disabled

This commit is contained in:
Xinyu Hou 2016-09-16 09:24:46 -04:00 committed by Andrew Nelless
parent ce4effa2c8
commit a17779e7fd
2 changed files with 8 additions and 0 deletions

View file

@ -1219,6 +1219,10 @@ Server::handleShapeChanged(const Event&, void* vclient)
void
Server::handleClipboardGrabbed(const Event& event, void* vclient)
{
if (!m_enableClipboard) {
return;
}
// ignore events from unknown clients
BaseClientProxy* grabber = reinterpret_cast<BaseClientProxy*>(vclient);
if (m_clientSet.count(grabber) == 0) {