Fix out of scope warnings

- Links within TD were not set to Global scope. This caused
  problems when a Page was in a container, but Views were not
  in the container.
This commit is contained in:
wandererfan
2019-01-21 13:06:02 -05:00
committed by Yorik van Havre
parent 13bf2c9672
commit 5a26558a9d
19 changed files with 11 additions and 12 deletions

View File

@@ -47,7 +47,7 @@ DrawViewCollection::DrawViewCollection()
nowUnsetting = false;
static const char *group = "Drawing view";
ADD_PROPERTY_TYPE(Views ,(0), group, App::Prop_None,"Attached Views");
Views.setScope(App::LinkScope::Global);
}
DrawViewCollection::~DrawViewCollection()