Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39b86d6 commit 5a6826fCopy full SHA for 5a6826f
lib/matplotlib/backends/backend_qt5.py
@@ -149,7 +149,11 @@ def _create_qApp():
149
qApp = app
150
151
if is_pyqt5():
152
- qApp.setAttribute(QtCore.Qt.AA_UseHighDpiPixmaps)
+ try:
153
+ qApp.setAttribute(QtCore.Qt.AA_UseHighDpiPixmaps)
154
+ qApp.setAttribute(QtCore.Qt.AA_EnableHighDpiScaling)
155
+ except AttributeError:
156
+ pass
157
158
159
class Show(ShowBase):
@@ -159,6 +163,7 @@ def mainloop(self):
163
global qApp
160
164
qApp.exec_()
161
165
166
+
162
167
show = Show()
168
169
0 commit comments