wayland: Tie activate / deactivate to appears-focused

... rather than actual focus. This makes things behave better.
This commit is contained in:
Jasper St. Pierre
2014-02-18 23:03:56 -05:00
parent 374e30043b
commit 7615d17293
2 changed files with 8 additions and 4 deletions

View File

@ -6360,6 +6360,14 @@ meta_window_appears_focused_changed (MetaWindow *window)
if (window->frame)
meta_frame_queue_draw (window->frame);
if (window->surface)
{
if (meta_window_appears_focused (window))
meta_wayland_surface_activated (window->surface);
else
meta_wayland_surface_deactivated (window->surface);
}
}
/**