X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ffrontends%2Fqt4%2FGuiInclude.cpp;h=32c8f097a0b2c3aaa9530b8cd5e223ba3d08449f;hb=425d092204118ea6c24c28e85fdf03fcf2bb51a4;hp=07a1fb8f9fbeaf959b1eb8fdcb5f7e8d90718ce5;hpb=3ddfec9ae0c56827deff42a63b3dfd701ce02539;p=lyx.git diff --git a/src/frontends/qt4/GuiInclude.cpp b/src/frontends/qt4/GuiInclude.cpp index 07a1fb8f9f..32c8f097a0 100644 --- a/src/frontends/qt4/GuiInclude.cpp +++ b/src/frontends/qt4/GuiInclude.cpp @@ -64,9 +64,9 @@ GuiInclude::GuiInclude(GuiView & lv) connect(captionLE, SIGNAL(textChanged(const QString&)), this, SLOT(change_adaptor())); connect(labelLE, SIGNAL(textChanged(const QString&)), this, SLOT(change_adaptor())); connect(listingsED, SIGNAL(textChanged()), this, SLOT(change_adaptor())); - connect(listingsED, SIGNAL(textChanged()), this, SLOT(set_listings_msg())); + connect(listingsED, SIGNAL(textChanged()), this, SLOT(setListingsMsg())); connect(bypassCB, SIGNAL(clicked()), this, SLOT(change_adaptor())); - connect(bypassCB, SIGNAL(clicked()), this, SLOT(set_listings_msg())); + connect(bypassCB, SIGNAL(clicked()), this, SLOT(setListingsMsg())); setFocusProxy(filenameED); @@ -108,7 +108,7 @@ docstring GuiInclude::validate_listings_params() } -void GuiInclude::set_listings_msg() +void GuiInclude::setListingsMsg() { static bool isOK = true; docstring msg = validate_listings_params(); @@ -232,6 +232,10 @@ void GuiInclude::paramsToDialog(InsetCommandParams const & params_) string extra = getStringFromVector(pars); listingsED->setPlainText(toqstr(InsetListingsParams(extra).separatedParams())); } + + // Make sure that the bc is in the INITIAL state + if (bc().policy().buttonStatus(ButtonPolicy::OKAY)) + bc().restore(); } @@ -291,8 +295,11 @@ void GuiInclude::edit() if (!isValid()) return; string const file = fromqstr(filenameED->text()); - slotOK(); - applyView(); + if (bc().policy().buttonStatus(ButtonPolicy::OKAY)) { + slotOK(); + applyView(); + } else + hideView(); dispatch(FuncRequest(LFUN_INSET_EDIT)); } @@ -347,4 +354,4 @@ Dialog * createGuiInclude(GuiView & lv) { return new GuiInclude(lv); } } // namespace frontend } // namespace lyx -#include "GuiInclude_moc.cpp" +#include "moc_GuiInclude.cpp"