Fix for issue #676: title field not seem to be working with JSON profile
This commit is contained in:
parent
1440dd924b
commit
e2a88a2855
|
@ -60,7 +60,7 @@ class ConfigJson(object):
|
||||||
json_name = layout_name
|
json_name = layout_name
|
||||||
|
|
||||||
if json_name in layoutjson:
|
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)] = {
|
children[parent + "." + str(order)] = {
|
||||||
'type': 'Terminal',
|
'type': 'Terminal',
|
||||||
|
|
Loading…
Reference in New Issue