Fix example formatting

This commit is contained in:
Drakulix 2017-03-20 15:53:45 +01:00
parent 6d2025634c
commit a0b8f53e03
1 changed files with 2 additions and 1 deletions

View File

@ -12,7 +12,8 @@ fn main() {
// Insert the ShmGlobal as a handler to your event loop
// Here, we specify tha the standard Argb8888 and Xrgb8888 is the only supported.
let handler_id =
event_loop.add_handler_with_init(ShmGlobal::new(vec![], None /* we don't provide a logger here */));
event_loop.add_handler_with_init(ShmGlobal::new(vec![],
None /* we don't provide a logger here */));
// Register this handler to advertise a wl_shm global of version 1
let shm_global = event_loop.register_global::<wl_shm::WlShm, ShmGlobal>(handler_id, 1);