diff options
| author | Matthias Melcher <fltk@matthiasm.com> | 2006-06-19 08:01:01 +0000 |
|---|---|---|
| committer | Matthias Melcher <fltk@matthiasm.com> | 2006-06-19 08:01:01 +0000 |
| commit | 0728999a83c66c1fb1b346d0238305b4a484ef6d (patch) | |
| tree | 8b2cdfd4fd32de190f870693e867b46c54deba76 | |
| parent | ad8d7c4b87f8a8c17752d8ae9b091fd37fa338a4 (diff) | |
Loading a file would not update the Widget Propertis dialog in FLUID (STR #1326)
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@5212 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
| -rw-r--r-- | CHANGES | 2 | ||||
| -rw-r--r-- | fluid/file.cxx | 1 |
2 files changed, 3 insertions, 0 deletions
@@ -1,5 +1,7 @@ CHANGES IN FLTK 1.1.8 + - Loading a file would not update the Widget + Propertis dialog in FLUID (STR #1326) - Fixed key compose sequences for shifted keys (STR #1194) - Added text selection and copy to Fl_Help_View. diff --git a/fluid/file.cxx b/fluid/file.cxx index 603bcdf95..2bc47a6d8 100644 --- a/fluid/file.cxx +++ b/fluid/file.cxx @@ -504,6 +504,7 @@ int read_file(const char *filename, int merge) { if (o->is_menu_button()) o->add_child(0,0); for (o = Fl_Type::first; o; o = o->next) if (o->selected) {Fl_Type::current = o; break;} + selection_changed(Fl_Type::current); return close_read(); } |
