Fixed Fl_Tabs tooltip reappearing.

git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@5361 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Matthias Melcher 2006-08-25 08:10:31 +00:00
parent 3647295a1b
commit 8220dc5592
2 changed files with 5 additions and 1 deletions

View File

@ -1,5 +1,6 @@
CHANGES IN FLTK 1.1.8
- Fixed Fl_Tabs tooltip reappearing (STR #1324)
- Added a new demo game called "Block Attack!"
- Updated the Sudoku game to show a notice about Hard and
Impossible puzzles having multiple solutions which are

View File

@ -158,7 +158,10 @@ int Fl_Tabs::handle(int event) {
set_changed();
do_callback();
}
} else push(o);
Fl_Tooltip::current(o);
} else {
push(o);
}
return 1;
case FL_MOVE: {
int ret = Fl_Group::handle(event);