prompt_dialog_critical¶
- async lsst.ts.m2gui.prompt_dialog_critical(title: str, description: str, is_prompted: bool = True) None¶
Shows a critical dialog.
The user must react to this dialog. The rest of the GUI is blocked until the dialog is dismissed.
Parameters¶
- title
str Title of the dialog.
- description
str Description message to be shown in the dialog.
- is_prompted
bool, optional When False, dialog will not be executed. That is used for tests, which shall not be the case when used in the real GUI. (the default is True)
- title