aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside2/tests/QtGui/bug_675.py
blob: 4efb3b9b01e4957b2a2dd70dd3851088eff545ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from PySide.QtCore import *
from PySide.QtWidgets 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()