1
0
Fork 0
mirror of https://github.com/Zedfrigg/ironbar.git synced 2025-08-16 22:31:03 +02:00

fix(launcher): showing xwayland menus and tooltips

Fixes #606
This commit is contained in:
Jake Stanger 2024-08-14 21:05:26 +01:00
parent 73799291d5
commit d8b68fd378
No known key found for this signature in database
GPG key ID: C51FC8F9CB0BEA61

View file

@ -54,6 +54,11 @@ impl ToplevelHandleHandler for Environment {
match handle.info() {
Some(info) => {
if info.app_id.is_empty() {
trace!("ignoring xwayland dialog");
return;
}
trace!("Adding new handle: {info:?}");
self.handles.push(handle.clone());
if let Some(info) = handle.info() {