From acc7aacf7b16e2859e480bc03f7cf84f8ea9fa06 Mon Sep 17 00:00:00 2001 From: Amy Bowersox Date: Wed, 11 Dec 2019 12:14:55 -0700 Subject: [PATCH] fixed another typo --- scripts/demo1.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/demo1.py b/scripts/demo1.py index 022eb2a..7eb0e21 100755 --- a/scripts/demo1.py +++ b/scripts/demo1.py @@ -17,7 +17,7 @@ command_rect = (drawing_rect[2], screen_rect[1], screen_rect[2], screen_rect[3]) cmd1_rect = (command_rect[0], command_rect[1], command_rect[2], 60) cmd2_rect = (command_rect[0], 60, command_rect[2], 120) cmd3_rect = (command_rect[0], 120, command_rect[2], 180) -cmd3_rect = (command_rect[0], 180, command_rect[2], command_rect[3]) +cmd4_rect = (command_rect[0], 180, command_rect[2], command_rect[3]) def point_in_rect(rect, x, y): return (x >= rect[0]) and (x < rect[2]) and (y >= rect[1]) and (y < rect[3])