Skip to content
Snippets Groups Projects
Commit 6220f392 authored by David Gobbi's avatar David Gobbi Committed by Kitware Robot
Browse files

Merge topic 'python-qwindow-scale' into release


b76eee55 For Python Qt widget, set DPI for text scaling

Acked-by: default avatarKitware Robot <kwrobot@kitware.com>
Merge-request: !6847
parents ab278e87 b76eee55
No related branches found
No related tags found
No related merge requests found
......@@ -384,6 +384,7 @@ class QVTKRenderWindowInteractor(QVTKRWIBaseClass):
scale = self._getPixelRatio()
w = int(round(scale*self.width()))
h = int(round(scale*self.height()))
self._RenderWindow.SetDPI(int(round(72*scale)))
vtkRenderWindow.SetSize(self._RenderWindow, w, h)
self._Iren.SetSize(w, h)
self._Iren.ConfigureEvent()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment