21 """ |
21 """ |
22 Constructor |
22 Constructor |
23 |
23 |
24 @param argv command line arguments |
24 @param argv command line arguments |
25 """ |
25 """ |
|
26 try: |
|
27 QCoreApplication.setAttribute(Qt.AA_EnableHighDpiScaling) |
|
28 # __IGNORE_EXCEPTION__ |
|
29 except AttributeError: |
|
30 pass |
|
31 |
26 super(E5Application, self).__init__(argv) |
32 super(E5Application, self).__init__(argv) |
27 |
33 |
28 QCoreApplication.setAttribute(Qt.AA_DontCreateNativeWidgetSiblings) |
34 QCoreApplication.setAttribute(Qt.AA_DontCreateNativeWidgetSiblings) |
29 try: |
35 try: |
30 QCoreApplication.setAttribute(Qt.AA_UseHighDpiPixmaps) |
36 QCoreApplication.setAttribute(Qt.AA_UseHighDpiPixmaps) |