mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-27 19:59:46 +00:00
This change solves dialog stacking problems on newer Mac OS X in combination with the OS provided file open dialog.
(cherry picked from commit97dc585138
) (cherry picked from commit1460e8fe6f
)
This commit is contained in:
parent
5ba05b546b
commit
108deae543
@ -56,6 +56,7 @@ GuiBibtex::GuiBibtex(GuiView & lv)
|
|||||||
setupUi(this);
|
setupUi(this);
|
||||||
|
|
||||||
QDialog::setModal(true);
|
QDialog::setModal(true);
|
||||||
|
setWindowModality(Qt::WindowModal);
|
||||||
|
|
||||||
connect(okPB, SIGNAL(clicked()),
|
connect(okPB, SIGNAL(clicked()),
|
||||||
this, SLOT(slotOK()));
|
this, SLOT(slotOK()));
|
||||||
|
@ -31,6 +31,7 @@ public:
|
|||||||
{
|
{
|
||||||
Ui::BibtexAddUi::setupUi(this);
|
Ui::BibtexAddUi::setupUi(this);
|
||||||
QDialog::setModal(true);
|
QDialog::setModal(true);
|
||||||
|
setWindowModality(Qt::WindowModal);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -119,6 +119,9 @@ What's new
|
|||||||
|
|
||||||
- Avoid a case of stuck cursor after entering an inset (bug 10630).
|
- Avoid a case of stuck cursor after entering an inset (bug 10630).
|
||||||
|
|
||||||
|
- Fix problems with hidden "BibTeX Add" dialogs on MacOSX by using drawers
|
||||||
|
instead of modal subdialogs (bug 10662).
|
||||||
|
|
||||||
- Don't swallow labels not entered through the toolbar in mathed (bug 10546).
|
- Don't swallow labels not entered through the toolbar in mathed (bug 10546).
|
||||||
|
|
||||||
- Fix bad context menu on insets that do not have one (bug 10616).
|
- Fix bad context menu on insets that do not have one (bug 10616).
|
||||||
|
Loading…
Reference in New Issue
Block a user