Merge pull request #48 from vdonich/patch-1

Update watchers priorities
This commit is contained in:
2e3s 2025-03-18 01:01:13 -04:00 committed by GitHub
commit 620d5865a9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -110,15 +110,15 @@ async fn filter_first_supported(
client,
"KWin window (script)"
));
watch!(create_watcher::<x11_window::WindowWatcher>(
client,
"X11 window"
));
#[cfg(feature = "gnome")]
watch!(create_watcher::<gnome_window::WindowWatcher>(
client,
"Gnome window (extension)"
));
watch!(create_watcher::<x11_window::WindowWatcher>(
client,
"X11 window"
));
}
};