Fix the scripted actions/set

This commit is contained in:
Eugene Yokota 2017-01-14 02:26:23 -05:00
parent b34e182d21
commit 9a33550c79
1 changed files with 1 additions and 1 deletions

View File

@ -399,7 +399,7 @@ object Project extends ProjectExtra {
val newAttrs = unloaded.attributes.put(stateBuildStructure, structure).put(sessionSettings, session).put(Keys.onUnload.key, onUnload)
val newState = unloaded.copy(attributes = newAttrs)
// TODO: Fix this
onLoad(newState /*LogManager.setGlobalLogLevels(updateCurrent(newState), structure.data)*/ )
onLoad(updateCurrent(newState) /*LogManager.setGlobalLogLevels(updateCurrent(newState), structure.data)*/ )
}
def orIdentity[T](opt: Option[T => T]): T => T = opt getOrElse idFun