diff options
author | Heiko Tietze <tietze.heiko@gmail.com> | 2023-04-13 12:15:46 +0200 |
---|---|---|
committer | Heiko Tietze <heiko.tietze@documentfoundation.org> | 2023-04-14 11:39:06 +0200 |
commit | 11bb9c14da13507adeeea8dce863fb4b96a92870 (patch) | |
tree | 77731313a7a4630a807a55393d7132e9dda512c3 /officecfg/registry | |
parent | b9ad48f1939145105ee57470b5c9210bacc8ee45 (diff) |
[API CHANGE] Related tdf#154080 - Allow customization of comment indicator color
* Calc > View option replaced by a new application color
* Border not only in highcontrast mode but always shown
* Border color depending on cell/sheet background
The previous option TextOverflow in Calc.xcs was replaced by
CalcTextOverflow in UI.xcs in order to combine color and on/off
with the accepted drawback of incompatibility.
The alternative, keeping the color separate from the toggle, would
separate the options and was rejected therefore.
Change-Id: Ie3e469163485d8eb1cffc7022e1518ad20e8e54e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150340
Tested-by: Heiko Tietze <heiko.tietze@documentfoundation.org>
Reviewed-by: Heiko Tietze <heiko.tietze@documentfoundation.org>
Diffstat (limited to 'officecfg/registry')
-rw-r--r-- | officecfg/registry/data/org/openoffice/Office/UI.xcu | 8 | ||||
-rw-r--r-- | officecfg/registry/schema/org/openoffice/Office/Calc.xcs | 8 | ||||
-rw-r--r-- | officecfg/registry/schema/org/openoffice/Office/UI.xcs | 16 |
3 files changed, 24 insertions, 8 deletions
diff --git a/officecfg/registry/data/org/openoffice/Office/UI.xcu b/officecfg/registry/data/org/openoffice/Office/UI.xcu index 30e1811960c1..d458ee3447a4 100644 --- a/officecfg/registry/data/org/openoffice/Office/UI.xcu +++ b/officecfg/registry/data/org/openoffice/Office/UI.xcu @@ -316,6 +316,14 @@ <value xsi:nil="true"/> </prop> </node> + <node oor:name="CalcTextOverflow"> + <prop oor:name="IsVisible"> + <value>true</value> + </prop> + <prop oor:name="Color"> + <value xsi:nil="true"/> + </prop> + </node> <node oor:name="CalcDetective"> <prop oor:name="Color"> <value xsi:nil="true"/> diff --git a/officecfg/registry/schema/org/openoffice/Office/Calc.xcs b/officecfg/registry/schema/org/openoffice/Office/Calc.xcs index c4f78c7ecf9d..7a18fb3381d2 100644 --- a/officecfg/registry/schema/org/openoffice/Office/Calc.xcs +++ b/officecfg/registry/schema/org/openoffice/Office/Calc.xcs @@ -129,14 +129,6 @@ </info> <value>true</value> </prop> - <prop oor:name="TextOverflow" oor:type="xs:boolean" oor:nillable="false"> - <!-- UIHints: Tools - Options -Spreadsheets - Contents - [Section] Display --> - <info> - <desc>Indicates whether text overflow is marked via a small triangle.</desc> - <label>Text overflow</label> - </info> - <value>true</value> - </prop> <prop oor:name="ObjectGraphic" oor:type="xs:int" oor:nillable="false"> <!-- UIHints: Tools - Options -Spreadsheets - Contents - [Section] Objects --> <info> diff --git a/officecfg/registry/schema/org/openoffice/Office/UI.xcs b/officecfg/registry/schema/org/openoffice/Office/UI.xcs index 303b99b666ef..d955e8993347 100644 --- a/officecfg/registry/schema/org/openoffice/Office/UI.xcs +++ b/officecfg/registry/schema/org/openoffice/Office/UI.xcs @@ -396,6 +396,22 @@ </info> </prop> </group> + <group oor:name="CalcTextOverflow"> + <info> + <desc>Specifies the settings used for the text overflow indicator in Calc.</desc> + </info> + <prop oor:name="IsVisible" oor:type="xs:boolean" oor:nillable="false"> + <info> + <desc>Specifies the visibility of the text overflow indicator (true = visible).</desc> + </info> + <value>true</value> + </prop> + <prop oor:name="Color" oor:type="xs:int"> + <info> + <desc>Specifies the color used for the text overflow indicator.</desc> + </info> + </prop> + </group> <group oor:name="CalcDetective"> <info> <desc>Specifies the settings used for audition arrows in Calc.</desc> |