aboutsummaryrefslogtreecommitdiffstats
path: root/tests/QtGui/bug_675.py
blob: d490f0f6d055e8dea3935398d42e7e26cece1a17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from PySide.QtCore import *
from PySide.QtGui import *

app = QApplication([])

scene = QGraphicsScene()

# don't segfault due to lack of keepReferenceCall
textEdit = scene.addWidget(QTextEdit())

layout = QGraphicsLinearLayout()
layout.addItem(textEdit)

view = QGraphicsView(scene)
view.show()