From 7e2f172b740a53dd9b03cebd2acda3d3dc71071c Mon Sep 17 00:00:00 2001 From: HavenOfTheRaven <125735960+HavenOfTheRaven@users.noreply.github.com> Date: Fri, 5 Apr 2024 22:46:00 -0600 Subject: [PATCH] fixed compiling issue for when x11 is not included as a feature (#22) --- src/overlays/screen.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/overlays/screen.rs b/src/overlays/screen.rs index fea1d40..bafd911 100644 --- a/src/overlays/screen.rs +++ b/src/overlays/screen.rs @@ -735,7 +735,7 @@ pub fn create_screens_wayland( } #[cfg(not(feature = "x11"))] -pub fn create_screens_x11(session: &AppSession) -> anyhow::Result { +pub fn create_screens_x11(_app: &mut AppState) -> anyhow::Result { anyhow::bail!("X11 support not enabled") }