Skip to content
Snippets Groups Projects
Commit b76eee55 authored by David Gobbi's avatar David Gobbi
Browse files

For Python Qt widget, set DPI for text scaling

Without this change, text is half-size on HiDPI displays.
parent f2c2f20d
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