go go freeze todo.. go!

SVN revision: 13691
This commit is contained in:
Carsten Haitzler 2005-03-11 11:20:46 +00:00
parent 338e742693
commit 28bd292c73
2 changed files with 2 additions and 4 deletions

2
TODO
View File

@ -30,8 +30,6 @@ Current freeze issues are:
ISSUES:
* consoldiate client lists - we have client lists for containers, zones, desks AND e_borders.c consolidate into 1 list that has all borders with their stacking and what desk they belong to (and thus zone and container)
* borders raise/lower stack doesnt modify any list to track stacking
* border show/hide needs to show from top down and hide from bottom up
* focus newly created windows when appropriate (under mouse and focus follows mouse etc.)
* focus issues in general
* virtual desktops need an overhaul. hacked in waay too quickly.

View File

@ -994,7 +994,7 @@ e_border_idler_before(void)
E_Border *bd;
bd = l->data;
if (bd->changes.visible && bd->visible)
if ((bd->changes.visible) && (bd->visible))
{
ecore_x_window_show(bd->win);
bd->changes.visible = 0;
@ -1006,7 +1006,7 @@ e_border_idler_before(void)
E_Border *bd;
bd = l->data;
if (bd->changes.visible && !bd->visible)
if ((bd->changes.visible) && (!bd->visible))
{
ecore_x_window_hide(bd->win);
bd->changes.visible = 0;