This commit is contained in:
Pavel 2020-09-25 23:28:06 +02:00
parent 1b97be5bd1
commit b626668f36
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@ def draw_line(x1, y1, x2, y2, color):
canvas.create_line(x1 + 1, y1 + 1, x2 + 1, y2 + 1, fill = color, width = 2.0)
def draw_help():
help = 'change angle: Left/Right, change length: Up/Down, add/remove element: Enter/Delete, previous/next element: PgDn/PgUp, print code: P, exit: Esc'
help = 'change angle: Left/Right, change length: Up/Down, add/remove element: Enter/Delete, previous/next element: PgUp/PgDn, print code: P, exit: Esc'
canvas.create_text(4, screen_h + 36, anchor = NW, text = help, fill = 'black')
def draw_path():