mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-26 19:25:39 +00:00
more cursor up/down smoothing
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5074 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
9e9450cd9a
commit
42d9dbd0e5
@ -216,7 +216,7 @@ void InsetFormulaBase::getCursorPos(BufferView *, int & x, int & y) const
|
||||
return;
|
||||
}
|
||||
mathcursor->getPos(x, y);
|
||||
//x -= xo_;
|
||||
x -= xo_;
|
||||
y -= yo_;
|
||||
//lyxerr << "getCursorPos: " << x << " " << y << "\n";
|
||||
}
|
||||
@ -240,7 +240,7 @@ void InsetFormulaBase::showInsetCursor(BufferView * bv, bool)
|
||||
int x, y, asc, des;
|
||||
getCursorPos(bv, x, y);
|
||||
math_font_max_dim(font_, asc, des);
|
||||
bv->showLockedInsetCursor(x, y, asc, des);
|
||||
bv->showLockedInsetCursor(x + xo_, y, asc, des);
|
||||
setCursorVisible(true);
|
||||
//lyxerr << "showInsetCursor: " << x << " " << y << "\n";
|
||||
}
|
||||
|
@ -171,6 +171,9 @@ void specialChar(LyXText * lt, BufferView * bv, InsetSpecialChar::Kind kind)
|
||||
|
||||
Inset::RESULT LyXText::dispatch(FuncRequest const & cmd)
|
||||
{
|
||||
lyxerr[Debug::ACTION] << "LyXFunc::dispatch: action[" << cmd.action
|
||||
<<"] arg[" << cmd.argument << "]" << endl;
|
||||
|
||||
BufferView * bv = cmd.view();
|
||||
|
||||
switch (cmd.action) {
|
||||
|
Loading…
Reference in New Issue
Block a user