diff options
author | Vinson Lee <vlee@vmware.com> | 2009-11-19 22:52:05 -0800 |
---|---|---|
committer | Vinson Lee <vlee@vmware.com> | 2009-12-03 17:27:24 -0800 |
commit | 56de7e222ee0f5e44b87ce05dc94733fdd41e4ed (patch) | |
tree | 1d5f563079e2ce16b9c55eab22f5aa70325b5aae /progs/trivial/linestrip-clip.c | |
parent | 34a0b22a741a136687e4feb7216595bf0f8445cb (diff) |
progs/trivial: Redraw upon keypress.
(cherry picked from commit 9553a42f638bd98eb90e5b7fb37d6b82758b6363)
Diffstat (limited to 'progs/trivial/linestrip-clip.c')
-rw-r--r-- | progs/trivial/linestrip-clip.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/progs/trivial/linestrip-clip.c b/progs/trivial/linestrip-clip.c index f252822921..5e90ea2eb0 100644 --- a/progs/trivial/linestrip-clip.c +++ b/progs/trivial/linestrip-clip.c @@ -62,7 +62,7 @@ static void Key(unsigned char key, int x, int y) case 27: exit(1); default: - return; + break; } glutPostRedisplay(); |