mirror of
https://github.com/OCA/knowledge.git
synced 2025-12-27 15:17:44 -06:00
Use wrapcolumn when calling HtmlDiff to view long line changes in one screen. Wrapping is set to a sane 40 columns default, but can be overriden by changing document_page.wrapcolumn config_parameter To restore original behaviour, delete document_page.wrapcolumn key in ir.config_parameter
10 lines
237 B
XML
10 lines
237 B
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<odoo noupdate="1">
|
|
|
|
<record id="document_page_wrapcolumn" model="ir.config_parameter">
|
|
<field name="key">document_page.wrapcolumn</field>
|
|
<field name="value">40</field>
|
|
</record>
|
|
|
|
</odoo>
|