BCDA-APS / gemviz

Data visualization for tiled
https://bcda-aps.github.io/gemviz/
Other
4 stars 0 forks source link

Cannot close LICENSE window #40

Closed prjemian closed 1 year ago

prjemian commented 1 year ago

Since #26, when the License window is shown, it cannot be closed directly since the About window is modal. Closing the About window closes the license.

prjemian commented 1 year ago

The Qt Window Flags Examples page describes settings which might resolve this.

prjemian commented 1 year ago

Or, ensure the about window is a singleton.

prjemian commented 1 year ago

Per the QDialog documentation, changing this line: https://github.com/BCDA-APS/gemviz/blob/a9a88c27e891d572fa465d8fb23b9e89cb0cb0e8/gemviz/mainwindow.py#L60

to

        about.open()

will resolve the problem.

prjemian commented 1 year ago

Th QDialog documentation has this note about exec():

Note

Avoid using this function; instead, use open() . ...