E Comp (wayland): Set border to borderless on show, so that we can

reduce pixmap lookups in core comp routines.



SVN revision: 67574
This commit is contained in:
Christopher Michael 2012-01-28 22:50:24 +00:00
parent 7ab3b4cb9e
commit 26f6478d62
1 changed files with 5 additions and 1 deletions

View File

@ -221,7 +221,11 @@ e_mod_comp_wl_surface_activate(Wayland_Surface *ws, Wayland_Input *wi, uint32_t
{
LOGFN(__FILE__, __LINE__, __FUNCTION__);
if (ws->win) e_win_show(ws->win);
if (ws->win)
{
e_win_show(ws->win);
ws->win->border->borderless = EINA_TRUE;
}
_e_mod_comp_wl_surface_raise(ws);
wl_input_device_set_keyboard_focus(&wi->input_device, &ws->surface, timestamp);