mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-24 01:01:57 +00:00
Fix confusing behavior in search when changing directions (bug 8543)
This commit is contained in:
parent
1b9150e673
commit
46aa8f32ec
@ -154,7 +154,9 @@ bool findOne(BufferView * bv, docstring const & searchstr,
|
||||
if (!searchAllowed(searchstr))
|
||||
return false;
|
||||
|
||||
DocIterator cur = bv->cursor();
|
||||
DocIterator cur = forward
|
||||
? bv->cursor().selectionEnd()
|
||||
: bv->cursor().selectionBegin();
|
||||
|
||||
MatchString const match(searchstr, case_sens, whole);
|
||||
|
||||
|
@ -130,6 +130,8 @@ What's new
|
||||
|
||||
- Fix a few selection bugs in tabular (bugs 4981, 7988).
|
||||
|
||||
- Fix confusing behavior in search when changing directions (bug 8543)
|
||||
|
||||
- Fix several issues when using multicolumns/multirows and decimal alignment in
|
||||
table cells (bug 8285).
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user