Hi, im trying to make a simple app that displays an image and im having some trouble with QGraphics, the problem is that the "changes" i make are not displayed unless i create an error, for example calling a function of the QGraphicsView with wrong parameters. 
<br><br>This is the code that has some trouble<br><br>#Create the scene<br>myScene = QtGui.QGraphicsScene(QtCore.QRectF(0,0,250,250))<br><br># gwImagen is a QGraphicView widget created with designer<br>self.gwImagen.setScene
(myScene)<br><br>#Create the TextItem to show<br>it = QtGui.QGraphicsTextItem(&quot;Hello world&quot;)<br><br>myScene.addItem(it)<br><br>#This is the code im missing, i couldn&#39;t find a way to just render the code so for example i call
<br># to setInteractive which expects a boolean parameter and don&#39;t give it.<br>self.gwImagen.setInteractive()<br><br><br>Thks, Hernan Rajchert<br><br>