exposay: Fix logic inversion when ending keyboard grabs

I flipped a ! in cee82d6286
and the exposay keyboard grab became permanent.

Signed-off-by: Derek Foreman <derekf@osg.samsung.com>
This commit is contained in:
Derek Foreman 2015-07-17 20:58:02 -05:00 committed by Bryce Harrington
parent 6b557a7047
commit daf846e4ea
1 changed files with 1 additions and 1 deletions

View File

@ -523,7 +523,7 @@ exposay_set_inactive(struct desktop_shell *shell)
if (seat->pointer_device_count)
weston_pointer_end_grab(seat->pointer);
if (!seat->keyboard_device_count) {
if (seat->keyboard_device_count) {
weston_keyboard_end_grab(seat->keyboard);
if (seat->keyboard->input_method_resource)
seat->keyboard->grab = &seat->keyboard->input_method_grab;