diff options
author | Khaled Hosny <khaled@libreoffice.org> | 2023-06-05 07:47:47 +0300 |
---|---|---|
committer | خالد حسني <khaled@libreoffice.org> | 2023-06-05 08:42:28 +0200 |
commit | a38e1537cd06367783a43cc8d3b0e8d674b6e142 (patch) | |
tree | 167518085a2395d76d01b98c30140b4d324e560b /officecfg | |
parent | 5ec593ac096395c9915e16acc1a2699432d10af5 (diff) |
tdf#155676: Use colon in FontsUseWinMetrics config key
The use of comma breaks editing in Expert Configuration dialog, so users
effectively can’t use this.
After editing
<it>Celticmd,1571,-567,1571,-547,2126,559</it>
becomes
<it>Celticmd</it><it>1571</it><it>-567</it><it>1571</it><it>-547</it><it>2126</it><it>559</it>
Using colon instead of comma seems to fix this.
Change-Id: I4bba26fe9d94a33e62a0d34c3324daae0845c30b
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/152597
Tested-by: Jenkins
Reviewed-by: Samuel Mehrbrodt <samuel.mehrbrodt@allotropia.de>
Reviewed-by: خالد حسني <khaled@libreoffice.org>
Diffstat (limited to 'officecfg')
-rw-r--r-- | officecfg/registry/schema/org/openoffice/Office/Common.xcs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/officecfg/registry/schema/org/openoffice/Office/Common.xcs b/officecfg/registry/schema/org/openoffice/Office/Common.xcs index f47edadcae0f..2eb90331ad33 100644 --- a/officecfg/registry/schema/org/openoffice/Office/Common.xcs +++ b/officecfg/registry/schema/org/openoffice/Office/Common.xcs @@ -5126,12 +5126,12 @@ </info> <value> <!-- tdf#148122 Celtic MD font appears wrong --> - <it>Celticmd,1571,-567,1571,-547,2126,559</it> + <it>Celticmd:1571:-567:1571:-547:2126:559</it> <!-- DIN Light (ttf version) has odd metrics. The otf version works fine. --> - <it>DIN Light,1509,-503,1509,-483,1997,483</it> + <it>DIN Light:1509:-503:1509:-483:1997:483</it> <!-- tdf#155297 --> - <it>B Nazanin,1343,-705,1990,-1045,1990,1045</it> <!-- Regular --> - <it>B Nazanin,1341,-707,2126,-1120,2126,1120</it> <!-- Bold --> + <it>B Nazanin:1343:-705:1990:-1045:1990:1045</it> <!-- Regular --> + <it>B Nazanin:1341:-707:2126:-1120:2126:1120</it> <!-- Bold --> </value> </prop> <prop oor:name="FontsDontUseUnderlineMetrics" oor:type="oor:string-list" oor:nillable="false"> |