mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-22 13:18:28 +00:00
Amend 9be6a425
, Workaround for advanced search in 'uncover'-inset.
Use getInset(i)->toString() instead of getInset(i)->plaintext() if searching, so that we get the option of 'uncover' visible to the search engine.
This commit is contained in:
parent
3b3f43cf35
commit
2333af615d
@ -4256,7 +4256,10 @@ docstring Paragraph::asString(pos_type beg, pos_type end, int options, const Out
|
|||||||
else if (c == META_INSET && (options & AS_STR_INSETS)) {
|
else if (c == META_INSET && (options & AS_STR_INSETS)) {
|
||||||
if (c == META_INSET && (options & AS_STR_PLAINTEXT)) {
|
if (c == META_INSET && (options & AS_STR_PLAINTEXT)) {
|
||||||
LASSERT(runparams != nullptr, return docstring());
|
LASSERT(runparams != nullptr, return docstring());
|
||||||
getInset(i)->plaintext(os, *runparams);
|
if (runparams->find_effective())
|
||||||
|
getInset(i)->toString(os);
|
||||||
|
else
|
||||||
|
getInset(i)->plaintext(os, *runparams);
|
||||||
} else if (c == META_INSET && (options & AS_STR_MATHED)
|
} else if (c == META_INSET && (options & AS_STR_MATHED)
|
||||||
&& getInset(i)->lyxCode() == REF_CODE) {
|
&& getInset(i)->lyxCode() == REF_CODE) {
|
||||||
Buffer const & buf = getInset(i)->buffer();
|
Buffer const & buf = getInset(i)->buffer();
|
||||||
|
Loading…
Reference in New Issue
Block a user