From 968b26c116195d4606f495ad06cb1c2ee9df9ad4 Mon Sep 17 00:00:00 2001 From: sebastid Date: Thu, 21 Jul 2005 11:50:45 +0000 Subject: [PATCH] Remember desk should work now. We don't have to raise and show the desk in _e_manager_cb_window_show_request(). The desk will be raised and shown in e_hints_window_init(). SVN revision: 15853 --- TODO | 1 - src/bin/e_manager.c | 8 ++------ 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/TODO b/TODO index 25b2c447a..837b0abfd 100644 --- a/TODO +++ b/TODO @@ -8,7 +8,6 @@ Some of the things (in very short form) that need to be done to E17... BUGS / FIXES ------------------------------------------------------------------------------- -* remember desk doesnt work * e_hints.c manually changes flags on a border isnetad of calling e_border_stick() for exampe or the calls in e_border.c - add calls as needed to e_border.c. before calling check the lock flags too. diff --git a/src/bin/e_manager.c b/src/bin/e_manager.c index a877878b3..3afc06d6c 100644 --- a/src/bin/e_manager.c +++ b/src/bin/e_manager.c @@ -435,12 +435,8 @@ _e_manager_cb_window_show_request(void *data, int ev_type __UNUSED__, void *ev) if (!e_border_find_by_client_window(e->win)) { bd = e_border_new(con, e->win, 0); - if (bd) - { - e_border_raise(bd); - e_border_show(bd); - } - else ecore_x_window_show(e->win); + if (!bd) + ecore_x_window_show(e->win); } } return 1;