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
+1 -1
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(..) {