On Fri, 02 Aug 2013 09:38:01 +0100 michael.blumenkra...@gmail.com said: > Carsten Haitzler - Enlightenment Git <no-re...@enlightenment.org> wrote: > >raster pushed a commit to branch master. > > > >commit 7cf4bfd6d0f7bde4ff369bebd62973277070dadb > >Author: Carsten Haitzler (Rasterman) <ras...@rasterman.com> > >Date: Fri Aug 2 16:57:06 2013 +0900 > > > > solve a race condition for stacking of windows if opened at the same > > time by the same client. > >--- > > src/bin/e_border.c | 3 ++- > > 1 file changed, 2 insertions(+), 1 deletion(-) > > > >diff --git a/src/bin/e_border.c b/src/bin/e_border.c > >index e8ded09..d336696 100644 > >--- a/src/bin/e_border.c > >+++ b/src/bin/e_border.c > >@@ -7463,7 +7463,8 @@ _e_border_eval0(E_Border *bd) > > } > > if (bd->parent) > > { > >- e_border_layer_set(bd, bd->parent->layer); > >+ if (bd->parent->layer != bd->layer) > >+ e_border_layer_set(bd, bd->parent->layer); > > if (bd->client.netwm.state.modal) > > { > > bd->parent->modal = bd; > > > >-- > > > >------------------------------------------------------------------------------ > >Get your SQL database under version control now! > >Version control is standard for application code, but databases havent > >caught up. So what steps can you take to put your SQL databases under > >version control? Why should you start doing it? Read more to find out. > >http://pubads.g.doubleclick.net/gampad/clk?id=49501711&iu=/4140/ostg.clktrk > > Ah so this was it?
was what? this solves the issue where an app shwos 2 transient dialogs at once (dialog a then b), but SOMETIMEs a ends up on top of b. this fixes that. -- ------------- Codito, ergo sum - "I code, therefore I am" -------------- The Rasterman (Carsten Haitzler) ras...@rasterman.com ------------------------------------------------------------------------------ Get your SQL database under version control now! Version control is standard for application code, but databases havent caught up. So what steps can you take to put your SQL databases under version control? Why should you start doing it? Read more to find out. http://pubads.g.doubleclick.net/gampad/clk?id=49501711&iu=/4140/ostg.clktrk _______________________________________________ enlightenment-devel mailing list enlightenment-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-devel