Skip to content

Commit

Permalink
Merge pull request #867 from belug23/fix_missing_root_in_world_building
Browse files Browse the repository at this point in the history
Fix missing root when using world building template
  • Loading branch information
TheJackiMonster committed Apr 21, 2021
2 parents fc08e9b + 96a3d28 commit 0a8b310
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manuskript/models/worldModel.py
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ def addItems(data, parent):
i = self.addItem(d[0], parent)
addItems(d[1], i)

addItems(data, None)
addItems(data, self.invisibleRootItem())
self.mw.treeWorld.expandAll()

###############################################################################
Expand Down

0 comments on commit 0a8b310

Please sign in to comment.