From cbee5400138edff40777d33ba361f77d3d8707cd Mon Sep 17 00:00:00 2001 From: Drakulix Date: Tue, 20 Feb 2018 13:56:24 +0100 Subject: [PATCH] Reexport ModifiersState to make it publically accessible --- src/wayland/seat/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wayland/seat/mod.rs b/src/wayland/seat/mod.rs index fae8005..48b096d 100644 --- a/src/wayland/seat/mod.rs +++ b/src/wayland/seat/mod.rs @@ -57,7 +57,7 @@ mod keyboard; mod pointer; -pub use self::keyboard::{Error as KeyboardError, KeyboardHandle}; +pub use self::keyboard::{Error as KeyboardError, KeyboardHandle, ModifiersState}; pub use self::pointer::PointerHandle; use wayland_server::{Client, EventLoopHandle, Global, Liveness, Resource, StateToken}; use wayland_server::protocol::{wl_keyboard, wl_pointer, wl_seat};