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:
parent
3647295a1b
commit
8220dc5592
1
CHANGES
1
CHANGES
@ -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
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user