Removed superfluous comments

This commit is contained in:
Matthias Melcher
2021-12-18 15:22:19 +01:00
committed by GitHub
parent 763ba46e54
commit de2585d9f1
-3
View File
@@ -398,8 +398,6 @@ void Fl_Type::add(Fl_Type *p, Strategy strategy) {
} }
select(this, 1); select(this, 1);
} }
// run the p tree a last time to make sure the widget_browser updates correctly
widget_browser->redraw(); widget_browser->redraw();
} }
@@ -432,7 +430,6 @@ void Fl_Type::insert(Fl_Type *g) {
fixvisible(this); fixvisible(this);
// tell parent that it has a new child, so it can update itself // tell parent that it has a new child, so it can update itself
if (parent) parent->add_child(this, g); if (parent) parent->add_child(this, g);
// run this tree a last time to make sure the widget_browser updates correctly
widget_browser->redraw(); widget_browser->redraw();
} }