mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-08 18:19:42 +00:00
inverted WORDFINDBACK/FORWARD from Alfredo
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5851 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
0cee971fe1
commit
54d69a7caa
@ -1,3 +1,7 @@
|
|||||||
|
2002-12-17 Alfredo Braunstein <abraunst@libero.it>
|
||||||
|
|
||||||
|
* lyxfunc.C: correct inversion of WORDFINDBACK/FORWARD
|
||||||
|
|
||||||
2002-12-16 Angus Leeming <leeming@lyx.org>
|
2002-12-16 Angus Leeming <leeming@lyx.org>
|
||||||
|
|
||||||
* lyxrc.[Ch]:
|
* lyxrc.[Ch]:
|
||||||
|
@ -896,7 +896,7 @@ void LyXFunc::dispatch(FuncRequest const & ev, bool verbose)
|
|||||||
} else {
|
} else {
|
||||||
searched_string = last_search;
|
searched_string = last_search;
|
||||||
}
|
}
|
||||||
bool fw = (action == LFUN_WORDFINDBACKWARD);
|
bool fw = (action == LFUN_WORDFINDFORWARD);
|
||||||
if (!searched_string.empty()) {
|
if (!searched_string.empty()) {
|
||||||
lyxfind::LyXFind(view(), searched_string, fw);
|
lyxfind::LyXFind(view(), searched_string, fw);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user