wrong procedure name stored in tool list

This commit is contained in:
Amy Bowersox 2019-12-11 14:53:47 -07:00
parent b620f55420
commit e7f191a9e0
1 changed files with 2 additions and 2 deletions

View File

@ -94,8 +94,8 @@ def rubberband_line(x, y, down, up):
tool_list = [
{ 'icon': bmp_freehand, 'feedback': freehand_draw },
{ 'icon': bmp_line, 'feedback': rubberband_line },
{ 'icon': bmp_rect, 'feedback': rubberband_rect },
{ 'icon': bmp_fillrect, 'feedback': rubberband_rect }
{ 'icon': bmp_rect, 'feedback': rubberband_rectangle },
{ 'icon': bmp_fillrect, 'feedback': rubberband_rectangle }
]
current_tool = 0