global variable definitions again

This commit is contained in:
Amy Bowersox 2019-12-11 14:45:59 -07:00
parent 90da46505e
commit 35a12760d7
1 changed files with 2 additions and 0 deletions

View File

@ -44,6 +44,7 @@ def draw_current_color():
hdc.solid_rectangle(cmd2_rect[0] + 6, cmd2_rect[1] + 6, cmd2_rect[0] + 54, cmd2_rect[1] + 54)
def select_next_color():
global current_color
current_color += 1
if current_color == len(color_list):
current_color = 0
@ -99,6 +100,7 @@ def draw_current_tool():
hdc.bitblt(cmd1_rect[0] + 6, cmd1_rect[1] + 6, cmd1_rect[0] + 54, cmd1_rect[1] + 54, hdc_bits, 0, 0, 0)
def select_next_tool():
global current_tool
current_tool += 1
if current_tool == len(tool_list):
current_tool = 0