clear x11 client pixmap when returning from iconic

ensure pixmap remains usable during the entire hide process
This commit is contained in:
Mike Blumenkrantz 2015-10-15 15:32:38 -04:00
parent dc872be2df
commit 06f794bfe6
1 changed files with 5 additions and 5 deletions

View File

@ -976,10 +976,7 @@ _e_comp_x_evas_hide_cb(void *data, Evas *e EINA_UNUSED, Evas_Object *obj EINA_UN
evas_object_hide(tmp->frame);
if (ec->unredirected_single || ec->iconic)
{
ecore_x_window_hide(_e_comp_x_client_window_get(ec));
e_pixmap_clear(ec->pixmap);
}
ecore_x_window_hide(_e_comp_x_client_window_get(ec));
if (e_comp_config_get()->send_flush)
ecore_x_e_comp_flush_send(e_client_util_win_get(ec));
@ -1001,7 +998,10 @@ _e_comp_x_evas_show_cb(void *data, Evas *e EINA_UNUSED, Evas_Object *obj EINA_UN
if (!_e_comp_x_client_data_get(ec)->need_reparent)
ecore_x_window_show(win);
if (ec->unredirected_single || ec->iconic)
ecore_x_window_show(_e_comp_x_client_window_get(ec));
{
e_pixmap_clear(ec->pixmap);
ecore_x_window_show(_e_comp_x_client_window_get(ec));
}
if (!ec->override)
e_hints_window_visible_set(ec);