]> git.lyx.org Git - features.git/commitdiff
Inhibits insertion of Regexp insets within InsetERT context (and fixes #6495).
authorTommaso Cucinotta <tommaso@lyx.org>
Sun, 31 Jan 2010 21:38:18 +0000 (21:38 +0000)
committerTommaso Cucinotta <tommaso@lyx.org>
Sun, 31 Jan 2010 21:38:18 +0000 (21:38 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@33302 a592a061-630c-0410-9148-cb99ea01b6c8

src/BufferView.cpp

index 64f3065898ac4d92f04a05d3cc8526373891f30e..92de71d7fe253177593bc0fd21b75a2378115f99 100644 (file)
@@ -62,6 +62,7 @@
 #include "insets/InsetRef.h"
 #include "insets/InsetText.h"
 #include "insets/InsetNote.h"
+#include "insets/InsetERT.h"
 
 #include "frontends/alert.h"
 #include "frontends/Application.h"
@@ -1026,7 +1027,7 @@ bool BufferView::getStatus(FuncRequest const & cmd, FuncStatus & flag)
 
        case LFUN_REGEXP_MODE:
                // FIXME: Test if current WorkArea is the search WorkArea
-               flag.setEnabled(buffer().isInternal() && !cur.inRegexped());
+               flag.setEnabled(buffer().isInternal() && !cur.inRegexped() && !dynamic_cast<InsetERT*>(&cur.inset()));
                break;
 
        case LFUN_LABEL_COPY_AS_REF: {