# HG changeset patch # User am@osimis.io # Date 1535094666 -7200 # Node ID d7d91d96b9d86f39cf75e037a49c2418b6cd1a2b # Parent 46c5296d867ed561ef22408c08cdc6423993f9fd fix diff -r 46c5296d867e -r d7d91d96b9d8 Framework/Widgets/LayerWidget.cpp --- a/Framework/Widgets/LayerWidget.cpp Thu Aug 23 17:12:54 2018 +0200 +++ b/Framework/Widgets/LayerWidget.cpp Fri Aug 24 09:11:06 2018 +0200 @@ -524,7 +524,7 @@ size_t i; if (LookupLayer(i, source)) { - LOG(INFO) << name_ << ": Geometry ready for layer " << i; + LOG(INFO) << ": Geometry ready for layer " << i << " in " << name_; changedLayers_[i] = true; //layers_[i]->ScheduleLayerCreation(slice_); diff -r 46c5296d867e -r d7d91d96b9d8 Platforms/Wasm/Defaults.cpp --- a/Platforms/Wasm/Defaults.cpp Thu Aug 23 17:12:54 2018 +0200 +++ b/Platforms/Wasm/Defaults.cpp Fri Aug 24 09:11:06 2018 +0200 @@ -87,7 +87,8 @@ application->DeclareStartupOptions(options); startupParametersBuilder.GetStartupParameters(parameters, options); - context.reset(new OrthancStone::BasicApplicationContext(OrthancStone::WasmWebService::GetInstance())); + context.reset(new OrthancStone::BasicApplicationContext()); + context->SetWebService(OrthancStone::WasmWebService::GetInstance()); application->Initialize(context.get(), statusBar_, parameters); application->InitializeWasm();