Ver 0.27.0 released

This commit is contained in:
MikeTheWatchGuy 2019-05-08 15:24:30 -04:00
parent 89c060884e
commit 16d96109a7
2 changed files with 41 additions and 2 deletions

View file

@ -1808,7 +1808,7 @@ class Graph(Element):
return None
return
def DrawRectangle(self, top_left, bottom_right, fill_color='black', line_color=None):
def DrawRectangle(self, top_left, bottom_right, fill_color='black', line_color='black'):
converted_top_left = self._convert_xy_to_canvas_xy(top_left[0], top_left[1])
converted_bottom_right = self._convert_xy_to_canvas_xy(bottom_right[0], bottom_right[1])
if self.Widget is None: