]> git.lyx.org Git - features.git/commitdiff
Add missing connection.
authorJuergen Spitzmueller <spitz@lyx.org>
Tue, 6 Feb 2018 11:45:22 +0000 (12:45 +0100)
committerJuergen Spitzmueller <spitz@lyx.org>
Tue, 6 Feb 2018 16:58:13 +0000 (17:58 +0100)
This activates the OK/Apply when a biblatex style file is changed
manually

(cherry picked from commit 6236bcb653f36336b62d4c48769b2d60ec13a0dc)

src/frontends/qt4/GuiDocument.cpp

index 784b0933b5c35753090fbea5bebf08c89b6c062d..b67f7979f69fdf843683a0f3e31b24061ed3a57b 100644 (file)
@@ -1155,10 +1155,14 @@ GuiDocument::GuiDocument(GuiView & lv)
                this, SLOT(updateResetDefaultBiblio()));
        connect(biblioModule->biblatexBbxCO, SIGNAL(activated(int)),
                this, SLOT(biblioChanged()));
+       connect(biblioModule->biblatexBbxCO, SIGNAL(editTextChanged(QString)),
+               this, SLOT(biblioChanged()));
        connect(biblioModule->biblatexBbxCO, SIGNAL(editTextChanged(QString)),
                this, SLOT(updateResetDefaultBiblio()));
        connect(biblioModule->biblatexCbxCO, SIGNAL(activated(int)),
                this, SLOT(biblioChanged()));
+       connect(biblioModule->biblatexCbxCO, SIGNAL(editTextChanged(QString)),
+               this, SLOT(biblioChanged()));
        connect(biblioModule->biblatexCbxCO, SIGNAL(editTextChanged(QString)),
                this, SLOT(updateResetDefaultBiblio()));
        connect(biblioModule->rescanBibliosPB, SIGNAL(clicked()),