Skip to content

Commit

Permalink
Update to v1.0.6
Browse files Browse the repository at this point in the history
Fixed issue with Arc border color.
  • Loading branch information
Joe Mazzone authored Jan 23, 2021
1 parent 69c2173 commit e0c29f9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions easy_draw.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

#######################
# Easy Draw Module
# Version 1.0.5
# Version 1.0.6
# Created by Joe Mazzone
# Documentation: https://daviestech.gitbook.io/easy-draw/
#######################
Expand All @@ -30,7 +30,7 @@ def __init__(self, message="Seems you did something you shouldn't with Easy Draw
super().__init__(self.message)


print("Welcome to Easy Draw! -- version 1.0.5 -- https://daviestech.gitbook.io/easy-draw/")
print("Welcome to Easy Draw! -- version 1.0.6 -- https://daviestech.gitbook.io/easy-draw/")
WINDOW = None
CANVAS = None
GRID_LINES = []
Expand Down Expand Up @@ -700,7 +700,7 @@ def __init__(self, center_xy, width, height, sweep_angle, *, color="black", bord
self.border_color = self.color
self.has_border = False
else:
self.border_color = self.border_color
self.border_color = border_color
self.has_border = True
self.border_width = border_width
self.dashes = dashes
Expand Down

0 comments on commit e0c29f9

Please sign in to comment.