Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDinko Galetic <dgaletic@everflame.(none)>2010-06-10 10:31:23 (GMT)
committer Dinko Galetic <dgaletic@everflame.(none)>2010-06-10 10:31:23 (GMT)
commit88cc999c9b273c2017d96c7c9aa043495b93b2e7 (patch)
tree6aa54641421b5cd5fccebda4e0242039e131a8ff
parent8953dcc49b949e5ae3c79cfd49b9c3ff21e164ca (diff)
"Koch snowflake", "Sierpinski - graphics" and "rotate polygon" now quit on q, not just any key except arrows.
-rw-r--r--data/GSOC examples/Koch snowflake2
-rw-r--r--data/GSOC examples/Sierpinski - graphics2
-rw-r--r--data/GSOC examples/rotate polygon2
3 files changed, 3 insertions, 3 deletions
diff --git a/data/GSOC examples/Koch snowflake b/data/GSOC examples/Koch snowflake
index 00159bd..c60d300 100644
--- a/data/GSOC examples/Koch snowflake
+++ b/data/GSOC examples/Koch snowflake
@@ -190,7 +190,7 @@ while pippy.pygame.next_frame():
elif event.type == KEYDOWN and event.key == K_LEFT and depth > 0:
depth = depth-1
lines = produce_lines(starting_lines, depth)
- elif event.type == KEYDOWN:
+ elif event.type == KEYDOWN and event.key == K_q:
sys.exit()
screen.fill(bgcolor)
# Display the current step.
diff --git a/data/GSOC examples/Sierpinski - graphics b/data/GSOC examples/Sierpinski - graphics
index f61111a..f5d75cc 100644
--- a/data/GSOC examples/Sierpinski - graphics
+++ b/data/GSOC examples/Sierpinski - graphics
@@ -101,7 +101,7 @@ while pippy.pygame.next_frame():
elif event.type == KEYDOWN and event.key == K_LEFT and depth > 0:
depth -= 1
recalculate = True
- elif event.type == KEYDOWN:
+ elif event.type == KEYDOWN and event.key == K_q:
sys.exit()
screen.fill(white)
# Display the current step.
diff --git a/data/GSOC examples/rotate polygon b/data/GSOC examples/rotate polygon
index 5bd2dcc..6061bfd 100644
--- a/data/GSOC examples/rotate polygon
+++ b/data/GSOC examples/rotate polygon
@@ -142,7 +142,7 @@ while pippy.pygame.next_frame():
elif event.type == KEYDOWN and event.key == K_DOWN and side_length > 5:
side_length -= 5
size_changed = True
- elif event.type == KEYDOWN:
+ elif event.type == KEYDOWN and event.key == K_q:
sys.exit()
screen.fill(bgcolor)