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:
André Pönitz 2003-07-02 17:09:56 +00:00
parent b4d594c1be
commit 83a3833d60
2 changed files with 9 additions and 1 deletions

View File

@ -978,7 +978,11 @@ bool BufferView::Pimpl::workAreaDispatch(FuncRequest const & ev_in)
screen().hideCursor(); 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 // see workAreaKeyPress
cursor_timeout.restart(); cursor_timeout.restart();

View File

@ -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> 2003-07-01 André Pönitz <poenitz@gmx.net>
* text.C: * text.C: