summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarsten Haitzler (Rasterman) <raster@rasterman.com>2019-06-03 12:46:09 +0100
committerCarsten Haitzler (Rasterman) <raster@rasterman.com>2019-06-03 12:46:09 +0100
commit540db8bd413fb233a6b40042c2d773d0d34de76e (patch)
treed8802b9bb77c0c7e6f99f778b51170042fa4b99c
parent61d45313c4950be5cd0ccec04a2b05fb5e0349bf (diff)
downloadenlightenment-540db8bd413fb233a6b40042c2d773d0d34de76e.tar.gz
e - fix stacking of transients to be in newness order bottom to top
so a parent transient shows 2 dialogs... both are transient for the parent. the newsewst one gets stacked below the older one. this leads to really bad things like a new "are you sure" or "have an error" modal dialog is not visible and things seemingly freeze in the client... so stack them in order they are created instead. also handle transients WITH transients of their own correctly this way too. @fix
-rw-r--r--src/bin/e_client.c16
1 files changed, 14 insertions, 2 deletions
diff --git a/src/bin/e_client.c b/src/bin/e_client.c
index b12d79d6c1..608968a76e 100644
--- a/src/bin/e_client.c
+++ b/src/bin/e_client.c
@@ -5718,7 +5718,7 @@ E_API void
e_client_transients_restack(E_Client *ec)
{
Eina_List *list;
- E_Client *child, *below = NULL;
+ E_Client *child, *below = NULL, *last;
E_OBJECT_CHECK(ec);
E_OBJECT_TYPE_CHECK(ec, E_CLIENT_TYPE);
@@ -5732,7 +5732,19 @@ e_client_transients_restack(E_Client *ec)
*/
if (child->iconic) continue;
if (below)
- evas_object_stack_below(child->frame, below->frame);
+ {
+ if (below->transients)
+ {
+ e_client_transients_restack(below);
+ last = eina_list_last_data_get(below->transients);
+ if (last)
+ evas_object_stack_above(child->frame, last->frame);
+ else
+ evas_object_stack_above(child->frame, below->frame);
+ }
+ else
+ evas_object_stack_above(child->frame, below->frame);
+ }
else
evas_object_stack_above(child->frame, ec->frame);
below = child;