Fix documentation error in Fl_Tabs (#391)

This commit is contained in:
Kevin Routley 2022-02-13 06:40:48 -05:00 committed by GitHub
parent c9b44064d2
commit f196ffbb52
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -122,7 +122,7 @@
void MyTabCallback(Fl_Widget *w, void*) {
Fl_Tabs *tabs = (Fl_Tabs*)w;
// When tab changed, make sure it has same color as its group
tabs->selection_color( (tab->value())->color() );
tabs->selection_color( (tabs->value())->color() );
}
..
int main(..) {