diff options
author | Alexander Orzechowski <alex@ozal.ski> | 2024-01-23 10:17:26 -0500 |
---|---|---|
committer | Kirill Primak <vyivel@eclair.cafe> | 2024-02-12 19:19:22 +0300 |
commit | 1846944f0454fec08ad91a04ab04e3b1ffcd1764 (patch) | |
tree | 76b6cea3f679e8eff228001654fa43a6a9aa8f47 /sway/input/cursor.c | |
parent | 1dc661af176d80db8b283e9c38fd127f71d33052 (diff) |
xdg_shell: Extract struct for popup descriptor
Diffstat (limited to 'sway/input/cursor.c')
-rw-r--r-- | sway/input/cursor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/input/cursor.c b/sway/input/cursor.c index 404c1eed..f25439cb 100644 --- a/sway/input/cursor.c +++ b/sway/input/cursor.c @@ -90,7 +90,7 @@ struct sway_node *node_at_coords( } if (!con) { - struct sway_xdg_popup *popup = + struct sway_popup_desc *popup = scene_descriptor_try_get(current, SWAY_SCENE_DESC_POPUP); if (popup) { con = popup->view->container; |