Make sure that tooltips are always on in test/preferences, even if they

are disabled by system or user options. Otherwise users wouldn't get the
necessary tooltips if someone switched tooltips off.


git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8036 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Albrecht Schlosser 2010-12-15 13:36:06 +00:00
parent eafeac5f98
commit 895f80a0c7
1 changed files with 3 additions and 1 deletions

View File

@ -238,5 +238,7 @@ Fl::delete_widget(myWindow);}
xywh {315 275 75 25}
}
}
code {readPrefs();} {}
code {readPrefs();
Fl::option(Fl::OPTION_SHOW_TOOLTIPS,1); // make sure tooltips are on !
} {}
}