Igniter: QApplication is created (#5081)

* get_qt_app actually creates new app

* Single line creation
This commit is contained in:
Jakub Trllo 2023-06-02 10:57:55 +02:00 committed by Jakub Trllo
parent 13a6c94c86
commit 3869a6f1d0

View file

@ -39,7 +39,8 @@ def _get_qt_app():
QtCore.Qt.HighDpiScaleFactorRoundingPolicy.PassThrough
)
return app
return QtWidgets.QApplication(sys.argv)
def open_dialog():
"""Show Igniter dialog."""