Commit 54e32a2c authored by Jérome Perrin's avatar Jérome Perrin

Some int properties were mistakenly defined as string.



git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@21110 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent ca5e7007
......@@ -63,27 +63,27 @@ class HtmlStylePreference:
'mode' : 'w' },
{ 'id' : 'preferred_string_field_width',
'description' : 'The default width of string fields',
'type' : 'string',
'type' : 'int',
'preference' : 1,
'mode' : 'w' },
{ 'id' : 'preferred_textarea_width',
'description' : 'The default width of text area fields',
'type' : 'string',
'type' : 'int',
'preference' : 1,
'mode' : 'w' },
{ 'id' : 'preferred_textarea_height',
'description' : 'The default height of text area fields',
'type' : 'string',
'type' : 'int',
'preference' : 1,
'mode' : 'w' },
{ 'id' : 'preferred_money_quantity_field_width',
'description' : 'The default width of fields displaying amounts of money',
'type' : 'string',
'type' : 'int',
'preference' : 1,
'mode' : 'w' },
{ 'id' : 'preferred_quantity_field_width',
'description' : 'The default width of quantity fields',
'type' : 'string',
'type' : 'int',
'preference' : 1,
'mode' : 'w' },
{ 'id' : 'preferred_listbox_view_mode_line_count',
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment