mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-11 03:03:06 +00:00
BufferView_pimpl.C (workAreaDispatch): tell the FuncRequest who we are
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7229 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
b4d594c1be
commit
83a3833d60
@ -978,7 +978,11 @@ bool BufferView::Pimpl::workAreaDispatch(FuncRequest const & ev_in)
|
||||
|
||||
screen().hideCursor();
|
||||
|
||||
bool const res = dispatch(ev_in);
|
||||
// Make sure that the cached BufferView is correct.
|
||||
FuncRequest ev = ev_in;
|
||||
ev.setView(bv_);
|
||||
|
||||
bool const res = dispatch(ev);
|
||||
|
||||
// see workAreaKeyPress
|
||||
cursor_timeout.restart();
|
||||
|
@ -1,4 +1,8 @@
|
||||
|
||||
2003-07-02 André Pönitz <poenitz@gmx.net>
|
||||
|
||||
* BufferView_pimpl.C (workAreaDispatch): tell the FuncRequest who we are
|
||||
|
||||
2003-07-01 André Pönitz <poenitz@gmx.net>
|
||||
|
||||
* text.C:
|
||||
|
Loading…
Reference in New Issue
Block a user