force comp reshape after desklock hide

should fix T440
This commit is contained in:
Mike Blumenkrantz 2013-11-27 10:25:36 -05:00
parent bb8e4e830c
commit e4e6b0d0fd
3 changed files with 9 additions and 1 deletions

View File

@ -5599,3 +5599,10 @@ e_comp_e_object_layer_get(const E_Object *obj)
}
return 0;
}
EAPI void
e_comp_shape_queue(E_Comp *c)
{
if (!c->shape_job)
c->shape_job = ecore_job_add((Ecore_Cb)_e_comp_shapes_update_job, c);
}

View File

@ -312,6 +312,6 @@ e_comp_e_object_layer_effective_get(const E_Object *obj)
}
EAPI void e_comp_util_wins_print(const E_Comp *c);
EAPI void e_comp_shape_queue(E_Comp *c);
#endif
#endif

View File

@ -359,6 +359,7 @@ e_desklock_hide(void)
if ((!edd) && (!_e_custom_desklock_exe)) return;
E_LIST_FOREACH(e_comp_list(), e_comp_override_del);
E_LIST_FOREACH(e_comp_list(), e_comp_shape_queue);
//e_comp_block_window_del();
if (e_config->desklock_language)
e_intl_language_set(e_config->language);