Set fade-in on most objects.

SVN revision: 16668
This commit is contained in:
Kim Woelders 2005-09-08 20:28:44 +00:00
parent 191c5047c2
commit 58d43cbcc9
2 changed files with 3 additions and 0 deletions

View File

@ -152,6 +152,7 @@ EobjInit(EObj * eo, int type, Window win, int x, int y, int w, int h,
eo->y = y;
eo->w = w;
eo->h = h;
eo->fade = 1;
if (name)
eo->name = Estrdup(name);
#if USE_COMPOSITE

View File

@ -79,6 +79,7 @@ StartupWindowsCreate(void)
return;
init_win1 = eo;
w1 = eo->win;
eo->fade = 0;
win1 = ECreateWindow(w1, x, y, VRoot.w, VRoot.h, 0);
eo = EobjWindowCreate(EOBJ_TYPE_MISC, x, y, VRoot.w, VRoot.h, 1, "Init-2");
@ -86,6 +87,7 @@ StartupWindowsCreate(void)
return;
init_win2 = eo;
w2 = eo->win;
eo->fade = 0;
win2 = ECreateWindow(w2, -x, -y, VRoot.w, VRoot.h, 0);
EMapWindow(win1);