From 14d01db86091a4cbe4ce31f15f1a5e95ae31025e Mon Sep 17 00:00:00 2001 From: Colin Noga Date: Mon, 28 May 2012 13:19:11 -0500 Subject: Added crosshairs to wii screen grid --- src/editorui/editormain.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/editorui/editormain.py b/src/editorui/editormain.py index 1a30fcf..60a09a5 100644 --- a/src/editorui/editormain.py +++ b/src/editorui/editormain.py @@ -419,6 +419,13 @@ class KPEditorWidget(QtGui.QGraphicsView): newRect2 = QtCore.QRectF(x-(m2x/2.0), y-(m2y/2.0), m2x, m2y) painter.drawRect(newRect2) + painter.drawLine(x, y-36, x, y+36) + painter.drawLine(x-36, y, x+36, y) + + newRect3 = QtCore.QRectF(x-24, y-24, 48, 48) + painter.drawRect(newRect3) + + def assignNewScene(self, scene): self.setScene(scene) self.centerOn(0,0) -- cgit v1.2.3