Fix mouse wheel behavior over horizontal scroll bars in FTextView

This commit is contained in:
Markus Gans 2018-09-02 13:48:04 +02:00
parent 9f0ed5bb26
commit 076598c988
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2018-09-02 Markus Gans <guru.mail@muenster.de>
* Fix mouse wheel behavior over horizontal scroll bars
in FTextView
2018-09-01 Markus Gans <guru.mail@muenster.de>
* Compiles now with newer gcc

View File

@ -917,7 +917,7 @@ void FTextView::cb_HBarChange (FWidget*, data_ptr)
break;
case FScrollbar::scrollWheelDown:
scrollBy (-wheel_distance, 0);
scrollBy (wheel_distance, 0);
break;
}