From: adam Date: Tue, 9 Mar 2004 09:21:08 +0000 (+0000) Subject: fixed bug 496 X-Git-Tag: RC3~6 X-Git-Url: http://git.megacz.com/?p=org.ibex.core.git;a=commitdiff_plain;h=9185da69fc462d7999e80034165ff6fe2b9e2259 fixed bug 496 darcs-hash:20040309092108-5007d-5d11379370df304cc482c2bb6555b7a939a401df.gz --- diff --git a/src/org/ibex/Box.java b/src/org/ibex/Box.java index 4e8d778..04c591f 100644 --- a/src/org/ibex/Box.java +++ b/src/org/ibex/Box.java @@ -573,8 +573,6 @@ public final class Box extends JSScope implements Scheduler.Task { case "KeyPressed": if (!test(STOP_UPWARD_PROPAGATION) && parent != null) parent.putAndTriggerTraps(name, value); case "KeyReleased": if (!test(STOP_UPWARD_PROPAGATION) && parent != null) parent.putAndTriggerTraps(name, value); case "Move": if (!test(STOP_UPWARD_PROPAGATION) && parent != null) parent.putAndTriggerTraps(name, value); - case "Enter": if (!test(STOP_UPWARD_PROPAGATION) && parent != null) parent.putAndTriggerTraps(name, value); - case "Leave": if (!test(STOP_UPWARD_PROPAGATION) && parent != null) parent.putAndTriggerTraps(name, value); case "HScroll": if (!test(STOP_UPWARD_PROPAGATION) && parent != null) parent.putAndTriggerTraps(name, N(((Number)value).floatValue() * ((float)parent.fontSize()) / ((float)fontSize()))); @@ -603,6 +601,8 @@ public final class Box extends JSScope implements Scheduler.Task { case "SizeChange": return; case "childadded": return; case "childremoved": return; + case "Enter": return; + case "Leave": return; case "thisbox": if (value == null) removeSelf();