mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-23 10:18:50 +00:00
Refactor of r33302 (addressing #6457) according to vfr comments.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@33303 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
0881479c48
commit
dff3792986
@ -62,7 +62,6 @@
|
|||||||
#include "insets/InsetRef.h"
|
#include "insets/InsetRef.h"
|
||||||
#include "insets/InsetText.h"
|
#include "insets/InsetText.h"
|
||||||
#include "insets/InsetNote.h"
|
#include "insets/InsetNote.h"
|
||||||
#include "insets/InsetERT.h"
|
|
||||||
|
|
||||||
#include "frontends/alert.h"
|
#include "frontends/alert.h"
|
||||||
#include "frontends/Application.h"
|
#include "frontends/Application.h"
|
||||||
@ -1027,7 +1026,8 @@ bool BufferView::getStatus(FuncRequest const & cmd, FuncStatus & flag)
|
|||||||
|
|
||||||
case LFUN_REGEXP_MODE:
|
case LFUN_REGEXP_MODE:
|
||||||
// FIXME: Test if current WorkArea is the search WorkArea
|
// FIXME: Test if current WorkArea is the search WorkArea
|
||||||
flag.setEnabled(buffer().isInternal() && !cur.inRegexped() && !dynamic_cast<InsetERT*>(&cur.inset()));
|
flag.setEnabled(buffer().isInternal() && !cur.inRegexped()
|
||||||
|
&& cur.inset().lyxCode() != ERT_CODE);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case LFUN_LABEL_COPY_AS_REF: {
|
case LFUN_LABEL_COPY_AS_REF: {
|
||||||
|
Loading…
Reference in New Issue
Block a user