mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-22 13:18:28 +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>
|
||||
|
||||
* lyxrc.[Ch]:
|
||||
|
@ -896,7 +896,7 @@ void LyXFunc::dispatch(FuncRequest const & ev, bool verbose)
|
||||
} else {
|
||||
searched_string = last_search;
|
||||
}
|
||||
bool fw = (action == LFUN_WORDFINDBACKWARD);
|
||||
bool fw = (action == LFUN_WORDFINDFORWARD);
|
||||
if (!searched_string.empty()) {
|
||||
lyxfind::LyXFind(view(), searched_string, fw);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user