mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-07 02:28:35 +00:00
Fix broken changes of wheel mouse. Sorry !
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5460 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
e372738266
commit
e0660589c4
@ -393,11 +393,12 @@ void BufferView::Pimpl::scroll(int lines)
|
||||
LyXText const * t = bv_->text;
|
||||
int const line_height = t->defaultHeight();
|
||||
|
||||
int const disp = lines * line_height;
|
||||
// The new absolute coordinate
|
||||
int new_first_y = t->first_y + lines * line_height;
|
||||
|
||||
// Restrict to a valid value
|
||||
int new_first_y = std::min(t->height - 4 * line_height, disp);
|
||||
new_first_y = std::max(0, disp);
|
||||
new_first_y = std::min(t->height - 4 * line_height, new_first_y);
|
||||
new_first_y = std::max(0, new_first_y);
|
||||
|
||||
scrollDocView(new_first_y);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user