diff --git a/CHANGES b/CHANGES index 289fe493b..8d0a28f3f 100644 --- a/CHANGES +++ b/CHANGES @@ -1,5 +1,8 @@ CHANGES IN FLTK 1.3.0 + - added scroll_to() to Fl_Scroll, replacing position() + which now behaves as it should (STR #1303) + - fixed Fl_Scroll inside Fl_Scroll (STR #265) - hardcoded 1.1 references in src/Makefile to 1.3 (STR #1922) - changed font index to 32 bit diff --git a/FL/Fl_Scroll.H b/FL/Fl_Scroll.H index 9d2846712..0838c54f0 100644 --- a/FL/Fl_Scroll.H +++ b/FL/Fl_Scroll.H @@ -68,7 +68,7 @@ public: int xposition() const {return xposition_;} int yposition() const {return yposition_;} - void position(int, int); + void scroll_to(int, int); void clear(); }; diff --git a/documentation/Fl_Scroll.html b/documentation/Fl_Scroll.html index 2a332e762..c30ca19d3 100644 --- a/documentation/Fl_Scroll.html +++ b/documentation/Fl_Scroll.html @@ -52,15 +52,13 @@ space for the scrollbars, as Fluid won't show these either.
You cannot use Fl_Window as a child of this since the clipping is not conveyed to it when drawn, and it will draw over the scrollbars and neighboring objects.
-Fl_Scroll widgets should not be nested. Having an Fl_Scroll -inside another Fl_Scroll may result in drawing errors when resizing.