From 47c3205229eab7ebbb1d1b01364b5c423ce281aa Mon Sep 17 00:00:00 2001 From: Denis Ledoux Date: Wed, 17 Sep 2014 13:54:11 +0200 Subject: [PATCH] [FIX] ir_ui_view: Active (boolean) should not be required If so, impossible to uncheck the box in the webclient --- openerp/addons/base/ir/ir_ui_view.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openerp/addons/base/ir/ir_ui_view.py b/openerp/addons/base/ir/ir_ui_view.py index ce6f2b4e020..7685b34e669 100644 --- a/openerp/addons/base/ir/ir_ui_view.py +++ b/openerp/addons/base/ir/ir_ui_view.py @@ -167,7 +167,7 @@ class view(osv.osv): () are applied, and the result is used as if it were this view's actual arch. """), - 'active': fields.boolean("Active", required=True, + 'active': fields.boolean("Active", help="""If this view is inherited, * if True, the view always extends its parent * if False, the view currently does not extend its parent but can be enabled