Official 0.28.0 Release

This commit is contained in:
MikeTheWatchGuy 2019-09-06 11:31:01 -04:00
parent ad394dc6a8
commit b483e18004
2 changed files with 58 additions and 8 deletions

View file

@ -1,5 +1,5 @@
#!/usr/bin/python3
version = __version__ = "0.28.0.3 Unreleased PEP8-ifed"
version = __version__ = "0.28.0 Released PEP8-ifed"
import sys
import types
@ -1727,6 +1727,7 @@ class Graph(Element):
pen = QPen(qcolor, width)
line = self.QT_QGraphicsScene.addLine(self.x+converted_point_from[0],self.y+ converted_point_from[1], self.x+converted_point_to[0],self.y+ converted_point_to[1], pen=pen)
# self.QT_QGraphicsItemGroup.addToGroup(line)
return line
def DrawRectangle(self, top_left, bottom_right, fill_color=None, line_color=None):
converted_point_top_left = self._convert_xy_to_canvas_xy(top_left[0], top_left[1])