summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES2
-rw-r--r--fluid/file.cxx1
2 files changed, 3 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index cc3e3735d..48c5c0fc6 100644
--- a/CHANGES
+++ b/CHANGES
@@ -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();
}