diff --git a/browser/form_macros.pt b/browser/form_macros.pt index 2f7f7ed..63543d3 100644 --- a/browser/form_macros.pt +++ b/browser/form_macros.pt @@ -326,11 +326,12 @@
diff --git a/compound/blog/schema.py b/compound/blog/schema.py index 66e642e..2985ec8 100644 --- a/compound/blog/schema.py +++ b/compound/blog/schema.py @@ -34,6 +34,6 @@ class BlogPostSchemaFactory(SchemaFactory): def __call__(self, interface, **kw): schema = super(BlogPostSchemaFactory, self).__call__(interface, **kw) - schema.fields.text.height = 10 + schema.fields.text.height = 15 return schema diff --git a/organize/interfaces.py b/organize/interfaces.py index 7d33d28..272bc00 100644 --- a/organize/interfaces.py +++ b/organize/interfaces.py @@ -201,7 +201,8 @@ class IAgendaItem(ILoopsAdapter): missing_value=u'', required=False) - description.height = discussion.height = consequences.height = 5 + description.height = 10 + discussion.height = consequences.height = 7 # 'hasrole' predicate diff --git a/schema/factory.py b/schema/factory.py index 3a8888e..153727d 100644 --- a/schema/factory.py +++ b/schema/factory.py @@ -38,7 +38,7 @@ class ResourceSchemaFactory(SchemaFactory): def __call__(self, interface, **kw): schema = super(ResourceSchemaFactory, self).__call__(interface, **kw) #if 'data' in schema.fields.keys(): - schema.fields.data.height = 10 + schema.fields.data.height = 15 if self.context.contentType == 'text/html': schema.fields.data.fieldType = 'html' return schema