diff options
| author | Matthias Melcher <github@matthiasm.com> | 2023-10-20 19:00:42 +0200 |
|---|---|---|
| committer | Matthias Melcher <github@matthiasm.com> | 2023-10-20 19:00:52 +0200 |
| commit | 9817536cfd4a9ea8d9bb5ef41580a5ba3d254911 (patch) | |
| tree | c2f313d24dad7a95742f4673907863c65fd771b2 /fluid/widget_browser.cxx | |
| parent | 757b5c12273cc1b4de8007b7c3f8536b699d2600 (diff) | |
FLUID: basic Fl_Grid support
* no settings for children yet
* ne good interactive editing for children
Diffstat (limited to 'fluid/widget_browser.cxx')
| -rw-r--r-- | fluid/widget_browser.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fluid/widget_browser.cxx b/fluid/widget_browser.cxx index afc24f961..56716cf0a 100644 --- a/fluid/widget_browser.cxx +++ b/fluid/widget_browser.cxx @@ -345,11 +345,11 @@ void Widget_Browser::item_draw(void *v, int X, int Y, int, int) const { } if ( l->is_widget() - && !l->is_a(Fl_Type::ID_Window) + && !l->is_a(ID_Window) && ((Fl_Widget_Type*)l)->o && !((Fl_Widget_Type*)l)->o->visible() - && (!l->parent || ( !l->parent->is_a(Fl_Type::ID_Tabs) - && !l->parent->is_a(Fl_Type::ID_Wizard) ) ) + && (!l->parent || ( !l->parent->is_a(ID_Tabs) + && !l->parent->is_a(ID_Wizard) ) ) ) { invisible_pixmap->draw(X - 17, Y); |
