Remove commented out code

This commit is contained in:
Ottatop 2023-12-25 19:52:17 -06:00
parent f9e81d4c1d
commit e4df0f9488

View file

@ -54,17 +54,6 @@ space_elements! {
X11OverrideRedirect = X11Surface,
}
// /// The different types of windows.
// #[derive(Debug, Clone, PartialEq)]
// pub enum WindowElement {
// /// This is a native Wayland window.
// Wayland(Window),
// /// This is an Xwayland window.
// X11(X11Surface),
// /// This is an Xwayland override redirect window, which should not be messed with.
// X11OverrideRedirect(X11Surface),
// }
impl WindowElement {
pub fn with_surfaces<F>(&self, processor: F)
where