Skip to content

Commit

Permalink
fixes for discussion #933
Browse files Browse the repository at this point in the history
  • Loading branch information
danielhrisca committed Nov 22, 2023
1 parent f9b7419 commit 4018abe
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/asammdf/gui/asammdfgui.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,14 @@ def main(measurements=None):
monkey_patch_pyqtgraph()
parser = _cmd_line_parser()
args = parser.parse_args(sys.argv[1:])

app = pyqtgraph.mkQApp()
app.setOrganizationName("py-asammdf")
app.setOrganizationDomain("py-asammdf")
app.setApplicationName("py-asammdf")
set_app_user_model_id("py-asammdf")

_main_window = MainWindow(args.measurements)
_main_window = MainWindow(measurements or args.measurements)
app.setStyle(QtWidgets.QStyleFactory.create("Fusion"))

app.exec()
Expand Down

0 comments on commit 4018abe

Please sign in to comment.