From b472b56b10cf4ea69f2e1936866e4e4e2b69ffb7 Mon Sep 17 00:00:00 2001 From: Ferdinand Schober Date: Sun, 10 Dec 2023 14:26:05 +0100 Subject: [PATCH] fix a compiler warning --- src/event.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/event.rs b/src/event.rs index b5b29287..7f9ba6df 100644 --- a/src/event.rs +++ b/src/event.rs @@ -4,9 +4,9 @@ use std::{ }; // FIXME -pub(crate) const BTN_LEFT: u32 = 0x110; -pub(crate) const BTN_RIGHT: u32 = 0x111; -pub(crate) const BTN_MIDDLE: u32 = 0x112; +pub const BTN_LEFT: u32 = 0x110; +pub const BTN_RIGHT: u32 = 0x111; +pub const BTN_MIDDLE: u32 = 0x112; #[derive(Debug, Clone, Copy)] pub enum PointerEvent {