change default pointer visibility to true on wayland (#225)

This commit is contained in:
Max von Forell 2020-11-12 11:52:24 +01:00 committed by GitHub
parent 5e29a18ff4
commit c1ff776260
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -561,7 +561,7 @@ impl Window {
resizable: opts.resize && !opts.none, resizable: opts.resize && !opts.none,
buffer: Vec::with_capacity(width * height * scale as usize * scale as usize), buffer: Vec::with_capacity(width * height * scale as usize * scale as usize),
toplevel_info: (resolution, closed), toplevel_info: (resolution, closed),
pointer_visibility: false, pointer_visibility: true,
}) })
} }