Skip to content

Commit d1324c7

Browse files
committed
2017.04.24. Do not display number of clicks
1 parent b322144 commit d1324c7

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Qt4_GraphicsLib.py

+2
Original file line numberDiff line numberDiff line change
@@ -1334,6 +1334,7 @@ def paint(self, painter, option, widget):
13341334
self.start_coord[0], self.scene().height())
13351335
painter.drawLine(0, self.start_coord[1],
13361336
self.scene().width(), self.start_coord[1])
1337+
"""
13371338
if len(self.centring_points) in (0, 1):
13381339
painter.drawText(self.start_coord[0] + 10,
13391340
self.start_coord[1] - 10,
@@ -1342,6 +1343,7 @@ def paint(self, painter, option, widget):
13421343
painter.drawText(self.start_coord[0] + 10,
13431344
self.start_coord[1] - 10,
13441345
"1 click left")
1346+
"""
13451347
for centring_point in self.centring_points:
13461348
painter.drawLine(centring_point[0] - 3,
13471349
centring_point[1] - 3,

0 commit comments

Comments
 (0)