Skip to content

Commit

Permalink
fix a compiler warning
Browse files Browse the repository at this point in the history
  • Loading branch information
feschber committed Dec 10, 2023
1 parent 18edb0d commit b472b56
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/event.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit b472b56

Please sign in to comment.