elm - win - dont report override windows that are shown as withdrawn

This commit is contained in:
Carsten Haitzler 2021-04-21 03:37:26 +01:00
parent 42f3b49d05
commit 39b2486418
1 changed files with 5 additions and 1 deletions

View File

@ -8543,7 +8543,11 @@ elm_win_withdrawn_get(const Evas_Object *obj)
{
Efl_Ui_Win_Data *sd = efl_data_scope_safe_get(obj, MY_CLASS);
if (!sd) return EINA_FALSE;
if (ecore_evas_override_get(sd->ee))
{
if (evas_object_visible_get(obj)) return EINA_FALSE;
return EINA_FALSE;
}
return sd->withdrawn;
}