Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/editorwindow.cc')
-rw-r--r--src/editorwindow.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/editorwindow.cc b/src/editorwindow.cc
index 65a84e6..5ae0be8 100644
--- a/src/editorwindow.cc
+++ b/src/editorwindow.cc
@@ -137,6 +137,9 @@ bool EditorWindow::loadFile(const QString &filename)
} else if (ini.got_key_float("radius", f)) {
entity->properties()->set_radius(f);
+
+ } else if (ini.got_key_string("info", str)) {
+ entity->properties()->add_info(str);
} else if (ini.got_key()) {
entity->properties()->add_value(ini.key(), ini.value());