Skip to content

Commit

Permalink
Merge pull request #707 from JakeStanger/fix/xwayland-popup
Browse files Browse the repository at this point in the history
fix(launcher): showing xwayland menus and tooltips
  • Loading branch information
JakeStanger authored Aug 14, 2024
2 parents 7379929 + d8b68fd commit 4d30819
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/clients/wayland/wlr_foreign_toplevel/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down

0 comments on commit 4d30819

Please sign in to comment.