From 01c8cb23ceb064dd11dea2c1c57e5546f4a7158b Mon Sep 17 00:00:00 2001 From: sebastid Date: Sat, 24 Sep 2005 11:45:09 +0000 Subject: [PATCH] A child should have the same layer as its parent. todo-- SVN revision: 16913 --- TODO | 3 --- src/bin/e_border.c | 1 + 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/TODO b/TODO index dfc7a71a2..26068adf3 100644 --- a/TODO +++ b/TODO @@ -28,9 +28,6 @@ Some of the things (in very short form) that need to be done to E17... ESSENTIAL FEATURES ------------------------------------------------------------------------------- -* if a parent window is "on top" child dialog windows should also be "on top" -* transients should have option to always follow parent - (move/resize/raise/lower) (and remember this). * emit signal to submenu entries if they have a submenu shown for them or not * add fullscreen support (e16 xvidmode or xrandr style) * implement thees maximise/fullscreen modes: diff --git a/src/bin/e_border.c b/src/bin/e_border.c index 355d73eb0..3aa4de09f 100644 --- a/src/bin/e_border.c +++ b/src/bin/e_border.c @@ -4807,6 +4807,7 @@ _e_border_eval(E_Border *bd) { bd_parent->transients = evas_list_append(bd_parent->transients, bd); bd->parent = bd_parent; + e_border_layer_set(bd, bd->parent->layer); if ((e_config->modal_windows) && (bd->client.netwm.state.modal)) bd->parent->modal = bd; }