summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES1
-rw-r--r--src/Fl_Tabs.cxx5
2 files changed, 5 insertions, 1 deletions
diff --git a/CHANGES b/CHANGES
index 29b2d6316..818837ecd 100644
--- a/CHANGES
+++ b/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
diff --git a/src/Fl_Tabs.cxx b/src/Fl_Tabs.cxx
index 02bac39a1..c697435f7 100644
--- a/src/Fl_Tabs.cxx
+++ b/src/Fl_Tabs.cxx
@@ -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);