mirror of
https://github.com/hyprwm/Hyprland.git
synced 2026-09-24 15:19:30 -05:00
protocols/datadevice: avoid double leave
ref https://github.com/hyprwm/Hyprland/discussions/12494
This commit is contained in:
@@ -298,10 +298,17 @@ void CWLDataDeviceResource::sendDataOffer(SP<IDataOffer> offer) {
|
||||
void CWLDataDeviceResource::sendEnter(uint32_t serial, SP<CWLSurfaceResource> surf, const Vector2D& local, SP<IDataOffer> offer) {
|
||||
if (const auto WL = offer->getWayland(); WL)
|
||||
m_resource->sendEnterRaw(serial, surf->getResource()->resource(), wl_fixed_from_double(local.x), wl_fixed_from_double(local.y), WL->m_resource->resource());
|
||||
|
||||
m_entered = surf;
|
||||
|
||||
// FIXME: X11
|
||||
}
|
||||
|
||||
void CWLDataDeviceResource::sendLeave() {
|
||||
if (!m_entered)
|
||||
return;
|
||||
|
||||
m_entered.reset();
|
||||
m_resource->sendLeave();
|
||||
}
|
||||
|
||||
|
||||
@@ -111,8 +111,10 @@ class CWLDataDeviceResource : public IDataDevice {
|
||||
WP<CWLDataDeviceResource> m_self;
|
||||
|
||||
private:
|
||||
SP<CWlDataDevice> m_resource;
|
||||
wl_client* m_client = nullptr;
|
||||
SP<CWlDataDevice> m_resource;
|
||||
wl_client* m_client = nullptr;
|
||||
|
||||
WP<CWLSurfaceResource> m_entered;
|
||||
|
||||
friend class CWLDataDeviceProtocol;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user