One more browser redraw fix from Ken.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2590 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
parent
e3100a5eb9
commit
a2c193c777
3
CHANGES
3
CHANGES
@ -1,5 +1,8 @@
|
|||||||
CHANGES IN FLTK 1.1.0
|
CHANGES IN FLTK 1.1.0
|
||||||
|
|
||||||
|
- Fixed one more redraw bug in Fl_Browser_ where we
|
||||||
|
weren't using the box function to erase empty space in
|
||||||
|
the list.
|
||||||
- Fl_Text_Display::buffer() now calls resize() to show
|
- Fl_Text_Display::buffer() now calls resize() to show
|
||||||
the buffer.
|
the buffer.
|
||||||
- Fl_Help_View didn't support HTML comments.
|
- Fl_Help_View didn't support HTML comments.
|
||||||
|
1
CREDITS
1
CREDITS
@ -43,3 +43,4 @@ OTHER CONTRIBUTORS
|
|||||||
Andrea Suatoni
|
Andrea Suatoni
|
||||||
Paul Sydney
|
Paul Sydney
|
||||||
Jim Wilson
|
Jim Wilson
|
||||||
|
Ken Yarnall
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
//
|
//
|
||||||
// "$Id: Fl_Browser_.cxx,v 1.10.2.16.2.15 2002/08/13 15:42:44 easysw Exp $"
|
// "$Id: Fl_Browser_.cxx,v 1.10.2.16.2.16 2002/08/16 19:51:31 easysw Exp $"
|
||||||
//
|
//
|
||||||
// Base Browser widget class for the Fast Light Tool Kit (FLTK).
|
// Base Browser widget class for the Fast Light Tool Kit (FLTK).
|
||||||
//
|
//
|
||||||
@ -371,8 +371,9 @@ J1:
|
|||||||
}
|
}
|
||||||
// erase the area below last line:
|
// erase the area below last line:
|
||||||
if (!(damage()&FL_DAMAGE_ALL) && yy < H) {
|
if (!(damage()&FL_DAMAGE_ALL) && yy < H) {
|
||||||
fl_color(color());
|
fl_push_clip(X, yy+Y, W, H-yy);
|
||||||
fl_rectf(X, yy+Y, W, H-yy);
|
draw_box(box() ? box() : FL_DOWN_BOX, x(), y(), w(), h(), color());
|
||||||
|
fl_pop_clip();
|
||||||
}
|
}
|
||||||
fl_pop_clip();
|
fl_pop_clip();
|
||||||
redraw1 = redraw2 = 0;
|
redraw1 = redraw2 = 0;
|
||||||
@ -756,5 +757,5 @@ void Fl_Browser_::item_select(void*, int) {}
|
|||||||
int Fl_Browser_::item_selected(void* l) const {return l==selection_;}
|
int Fl_Browser_::item_selected(void* l) const {return l==selection_;}
|
||||||
|
|
||||||
//
|
//
|
||||||
// End of "$Id: Fl_Browser_.cxx,v 1.10.2.16.2.15 2002/08/13 15:42:44 easysw Exp $".
|
// End of "$Id: Fl_Browser_.cxx,v 1.10.2.16.2.16 2002/08/16 19:51:31 easysw Exp $".
|
||||||
//
|
//
|
||||||
|
Loading…
Reference in New Issue
Block a user