Skip to content

Commit

Permalink
Fixed Wizard IWAD setting
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Oct 23, 2005
1 parent 0173d3e commit 843eb74
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions snowberry/events.py
Expand Up @@ -339,12 +339,6 @@ def send(event):

sendDepth += 1

# If a value-changed event is sent, also send the specially targeted
# event meant to be handled by the widget who handles the value.
if event.hasId('value-changed'):
# Place it in the beginning of the queue.
queuedEvents.insert(0, event.getTargetedEvent())

# Commands and Notifys go to a different set of listeners.
if event.myClass == Command:
listeners = commandListeners
Expand Down Expand Up @@ -385,6 +379,12 @@ def send(event):
send(ev)

sendDepth -= 1

# If a value-changed event is sent, also send the specially targeted
# event meant to be handled by the widget who handles the value.
if event.hasId('value-changed'):
# Place it in the beginning of the queue.
send(event.getTargetedEvent())


def sendAfter(event):
Expand Down

0 comments on commit 843eb74

Please sign in to comment.