Skip to content

Commit

Permalink
Fix for issue #676: title field not seem to be working with JSON profile
Browse files Browse the repository at this point in the history
  • Loading branch information
rkashinin committed Apr 9, 2023
1 parent 1440dd9 commit e2a88a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion terminatorlib/configjson.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def from_json(layout_name, json_name=None):
json_name = layout_name

if json_name in layoutjson:
children[parent + "." + str(order)].__setitem__(layout_name, layoutjson[json_name])
children[parent + "." + str(order)][layout_name] = layoutjson[json_name]

children[parent + "." + str(order)] = {
'type': 'Terminal',
Expand Down

0 comments on commit e2a88a2

Please sign in to comment.