diff -r 9fc3d5170b24 -r 40f3006fba2e gui_reader.cc --- a/gui_reader.cc Mon Oct 30 13:08:04 2006 +0000 +++ b/gui_reader.cc Mon Oct 30 14:57:48 2006 +0000 @@ -60,6 +60,20 @@ { mapstorage->changeActiveMap(true, i, em[i]); } + + double attraction; + double propulsation; + int iteration; + + x("redesign-attraction", attraction); + x("redesign-propulsation", propulsation); + x("redesign-iteration", iteration); + + mapstorage->set_attraction(attraction); + mapstorage->set_propulsation(propulsation); + mapstorage->set_iteration(iteration); + + mapstorage->redesign_data_changed(); } GuiReader::GuiReader(LemonReader& reader, MapStorage* ms) : Parent(reader), mapstorage(ms)