forked from e16/e16
1
0
Fork 0

Set no-redirect flag on input-only windows (cosmetic/debug, has no real effect).

SVN revision: 27176
This commit is contained in:
Kim Woelders 2006-11-19 12:37:09 +00:00
parent 39bf91ab83
commit 6f8d5d4d04
2 changed files with 5 additions and 1 deletions

View File

@ -1434,7 +1434,10 @@ ECompMgrWinNew(EObj * eo)
return;
if (eo->inputonly || eo->win == VRoot.win)
return;
{
eo->noredir = 1;
return;
}
cw = Ecalloc(1, sizeof(ECmWinInfo));
if (!cw)

View File

@ -198,6 +198,7 @@ EobjInit(EObj * eo, int type, Win win, int x, int y, int w, int h,
eo->shadow = 1;
switch (type)
{
case EOBJ_TYPE_EVENT:
case EOBJ_TYPE_MISC_NR:
case EOBJ_TYPE_ROOT_BG:
eo->noredir = 1;