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? 
------------------------------------------------------------------------------
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

Reply via email to