From ba0d099e387c7a1706fce485c44f8032c6684176 Mon Sep 17 00:00:00 2001 From: Xaver Hugl Date: Tue, 21 Sep 2021 13:33:22 +0200 Subject: [PATCH] outputdevice: add missing done events CCBUG: 442520 --- src/wayland/outputdevice_v2_interface.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/wayland/outputdevice_v2_interface.cpp b/src/wayland/outputdevice_v2_interface.cpp index 98a4d19ce4..e34c68718f 100644 --- a/src/wayland/outputdevice_v2_interface.cpp +++ b/src/wayland/outputdevice_v2_interface.cpp @@ -604,6 +604,7 @@ void OutputDeviceV2InterfacePrivate::updateEnabled() const auto clientResources = resourceMap(); for (auto resource : clientResources) { sendEnabled(resource); + sendDone(resource); } } @@ -612,6 +613,7 @@ void OutputDeviceV2InterfacePrivate::updateEdid() const auto clientResources = resourceMap(); for (auto resource : clientResources) { sendEdid(resource); + sendDone(resource); } } @@ -620,6 +622,7 @@ void OutputDeviceV2InterfacePrivate::updateUuid() const auto clientResources = resourceMap(); for (auto resource : clientResources) { sendUuid(resource); + sendDone(resource); } } @@ -628,6 +631,7 @@ void OutputDeviceV2InterfacePrivate::updateEisaId() const auto clientResources = resourceMap(); for (auto resource : clientResources) { sendEisaId(resource); + sendDone(resource); } } @@ -660,6 +664,7 @@ void OutputDeviceV2InterfacePrivate::updateCapabilities() const auto clientResources = resourceMap(); for (const auto &resource : clientResources) { sendCapabilities(resource); + sendDone(resource); } } @@ -682,6 +687,7 @@ void OutputDeviceV2InterfacePrivate::updateOverscan() const auto clientResources = resourceMap(); for (const auto &resource : clientResources) { sendOverscan(resource); + sendDone(resource); } } @@ -709,6 +715,7 @@ void OutputDeviceV2InterfacePrivate::updateVrrPolicy() const auto clientResources = resourceMap(); for (const auto &resource : clientResources) { sendVrrPolicy(resource); + sendDone(resource); } } @@ -736,6 +743,7 @@ void OutputDeviceV2InterfacePrivate::updateRgbRange() const auto clientResources = resourceMap(); for (const auto &resource : clientResources) { sendRgbRange(resource); + sendDone(resource); } }