GPU-accelerated UI toolkit (Vulkan)
git clone https://git.lucas.co/cce-ui.git
Disable popover text clipping so Wayland popup naturally draws over underlying text on z axis
src/backend/window_runner.rs | 5 -----
1 file changed, 5 deletions(-)
diff --git a/src/backend/window_runner.rs b/src/backend/window_runner.rs
index 530e958..1036b62 100644
--- a/src/backend/window_runner.rs
+++ b/src/backend/window_runner.rs
@@ -890,11 +890,6 @@ pub trait Application: Sized + 'static {
crate::widget::context_menu::h(),
));
}
- for popover_ptr in crate::widget::popovers::get_active() {
- if let Some(r) = unsafe { &*popover_ptr }.popover_rect() {
- overlay_rects.push(r);
- }
- }
self.text_items().iter().map(|ti| {
let mut item_bounds = if let Some([l, t, r, b]) = ti.bounds {