Skip to content

Commit

Permalink
adds changes in vtk/examples-pyside6-vtk/rw_QVTKRenderWindowInteracto…
Browse files Browse the repository at this point in the history
…r.py (#29)
  • Loading branch information
mxochicale committed Mar 1, 2023
1 parent c5c84ae commit 8585f05
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vtk/examples-pyside6-vtk/rw_QVTKRenderWindowInteractor.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ def __init__(self):
def initUI(self):
self.setGeometry(190, 300, 300, 200)
self.setWindowTitle("Simple menu")

self.container = QWidget()
print(type(self))
self.container = QWidget(self)
vl = QVBoxLayout(self.container)
self.setCentralWidget(self.container)
self.resize(640, 480)
Expand Down

0 comments on commit 8585f05

Please sign in to comment.