We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 85a0d8f commit 1de2890Copy full SHA for 1de2890
src/surface/popup.cpp
@@ -74,6 +74,9 @@ Popup::Popup(Surface& parent, wlr_xdg_popup& wlr) noexcept
74
scene_node->data = this;
75
wlr.base->surface->data = this;
76
77
+ // just in case the popup hasn't been configured already (2024-07-13)
78
+ wlr_xdg_surface_schedule_configure(wlr.base);
79
+
80
listeners.map.notify = popup_map_notify;
81
wl_signal_add(&wlr.base->surface->events.map, &listeners.map);
82
listeners.destroy.notify = popup_destroy_notify;
0 commit comments