diff --git a/libs/scrap/src/common/wayland.rs b/libs/scrap/src/common/wayland.rs index 3efaed36e..e625fca7e 100644 --- a/libs/scrap/src/common/wayland.rs +++ b/libs/scrap/src/common/wayland.rs @@ -4,7 +4,6 @@ use std::{io, sync::RwLock, time::Duration}; pub struct Capturer(Display, Box, bool, Vec); -#[allow(non_upper_case_globals)] pub const IS_CURSOR_EMBEDDED: bool = true; lazy_static::lazy_static! { diff --git a/libs/scrap/src/common/x11.rs b/libs/scrap/src/common/x11.rs index ffeb1b55f..61112bff7 100644 --- a/libs/scrap/src/common/x11.rs +++ b/libs/scrap/src/common/x11.rs @@ -3,7 +3,6 @@ use std::{io, ops, time::Duration}; pub struct Capturer(x11::Capturer); -#[allow(non_upper_case_globals)] pub const IS_CURSOR_EMBEDDED: bool = false; impl Capturer {