mirror of
https://github.com/debauchee/barrier.git
synced 2026-05-08 23:14:20 +08:00
#123 Disabled clipboard grab mechanism when clipboard is disabled
This commit is contained in:
committed by
Andrew Nelless
parent
ce4effa2c8
commit
a17779e7fd
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user