>>>>> "Angus" == Angus Leeming <[EMAIL PROTECTED]> writes:
Angus> What would be nice would be a way of telling Qt to ensure that Angus> the Graphics dialog remained on top of the main LyX window when Angus> the Alert pops up, so that the Alert is on top of the Graphics Angus> dialog is on top of the main window. Currently, the Alert is on Angus> top of the main window is on top of the Graphics dialog :( It is possible by passing the right QWidget as first argument of QMessageBox static methods, something like qApp->focusWidget() ? qApp->focusWidget() : qApp->mainWidget() Then the alert would be modal wrt the active dialog, I think. JMarc