Prevent project groups from containing configuration settings

This commit is contained in:
Jason Perkins 2014-10-08 16:20:16 -04:00
parent 141bec58b5
commit de5b04b348
2 changed files with 4 additions and 1 deletions

View File

@ -149,7 +149,9 @@
api._clearChildScopes(cc)
-- activate the container, as well as its ancestors
api.scope.current = container
if not cc.placeholder then
api.scope.current = container
end
while container.parent do
api.scope[container.class.name] = container
container = container.parent

View File

@ -23,6 +23,7 @@
p.api.container {
name = "group",
parent = "solution",
placeholder = true,
}