diff --git a/addons/web/static/src/js/view_editor.js b/addons/web/static/src/js/view_editor.js index 578611edd5b..d1ed9cbf867 100644 --- a/addons/web/static/src/js/view_editor.js +++ b/addons/web/static/src/js/view_editor.js @@ -823,33 +823,27 @@ var _PROPERTIES = { 'label': ['string', 'align', 'colspan', 'groups'], 'button': ['name', 'string', 'icon', 'type', 'states', 'readonly', 'special', 'target', 'confirm', 'context', 'attrs', 'groups','colspan'], 'newline' : [], - 'hpaned': ['position', 'groups'], - 'vpaned': ['position', 'groups'], - 'child1' : ['groups'], - 'child2' : ['groups'], + 'board': ['style'], + 'column' : [], 'action' : ['name', 'string', 'colspan', 'groups'], 'tree' : ['string', 'colors', 'editable', 'link', 'limit', 'min_rows'], 'graph' : ['string', 'type'], 'calendar' : ['string', 'date_start', 'date_stop', 'date_delay', 'day_length', 'color', 'mode'], - 'view' : [], }; _CHILDREN = { - 'form': ['notebook', 'group', 'field', 'label', 'button', 'image', 'newline', 'separator'], + 'form': ['notebook', 'group', 'field', 'label', 'button','board', 'newline', 'separator'], 'tree': ['field'], 'graph': ['field'], 'calendar': ['field'], 'notebook': ['page'], - 'page': ['notebook', 'group', 'field', 'label', 'button', 'image', 'newline', 'separator'], + 'page': ['notebook', 'group', 'field', 'label', 'button', 'newline', 'separator'], 'group': ['field', 'label', 'button', 'separator', 'newline'], - 'hpaned': ['child1', 'child2'], - 'vpaned': ['child1', 'child2'], - 'child1': ['action'], + 'board': ['column'], 'child2': ['action'], 'action': [], 'field': ['form', 'tree', 'graph'], 'label': [], 'button' : [], - 'image': [], 'newline': [], 'separator': [], };