diff options
| author | Matthias Melcher <fltk@matthiasm.com> | 2010-02-19 21:29:09 +0000 |
|---|---|---|
| committer | Matthias Melcher <fltk@matthiasm.com> | 2010-02-19 21:29:09 +0000 |
| commit | 529382001f5e19349fbcb188c901cfab8e3a3627 (patch) | |
| tree | ce718316051c75846ec7acb477364665d1555e93 /fluid | |
| parent | 4763df1636fc943257846407aff6dd1086288a04 (diff) | |
Fixed lost top item in Fluid's tree browser (STR #2233)
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@7108 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'fluid')
| -rw-r--r-- | fluid/Fl_Type.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fluid/Fl_Type.cxx b/fluid/Fl_Type.cxx index 5a9b1750e..183beb443 100644 --- a/fluid/Fl_Type.cxx +++ b/fluid/Fl_Type.cxx @@ -777,6 +777,8 @@ void Fl_Type::move_before(Fl_Type* g) { if (prev) prev->next = this; else Fl_Type::first = this; g->prev = l; if (parent && is_widget()) parent->move_child(this,g); + widget_browser->inserting(g, this); + widget_browser->display(this); widget_browser->redraw(); } |
