diff options
author | Sahil <me.sahilgautam@gmail.com> | 2024-01-15 08:02:38 +0530 |
---|---|---|
committer | Heiko Tietze <heiko.tietze@documentfoundation.org> | 2024-01-23 11:27:43 +0100 |
commit | 4377341dd287b863573bb40ed77e2e2caa92b358 (patch) | |
tree | 7eb25941c1c61b055c8dfd91fc6bdcb2e690eb81 /officecfg | |
parent | 98623ff0cddb15af0086885e5bf3361da8106ff8 (diff) |
tdf#158891 Make cell cursor more accessible for color blind
* Add an option to configure the accent color, which is
blue by default might not be visible to color blind people.
Change-Id: I72cbb0f57e864407a7c9315b5c46645a891d4764
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/162055
Tested-by: Heiko Tietze <heiko.tietze@documentfoundation.org>
Reviewed-by: Heiko Tietze <heiko.tietze@documentfoundation.org>
Tested-by: Jenkins
Diffstat (limited to 'officecfg')
-rw-r--r-- | officecfg/registry/data/org/openoffice/Office/UI.xcu | 5 | ||||
-rw-r--r-- | officecfg/registry/schema/org/openoffice/Office/UI.xcs | 10 |
2 files changed, 15 insertions, 0 deletions
diff --git a/officecfg/registry/data/org/openoffice/Office/UI.xcu b/officecfg/registry/data/org/openoffice/Office/UI.xcu index 2d403745d778..2976c56d182b 100644 --- a/officecfg/registry/data/org/openoffice/Office/UI.xcu +++ b/officecfg/registry/data/org/openoffice/Office/UI.xcu @@ -293,6 +293,11 @@ <value xsi:nil="true"/> </prop> </node> + <node oor:name="CalcCellFocus"> + <prop oor:name="Color"> + <value xsi:nil="true"/> + </prop> + </node> <node oor:name="CalcPageBreak"> <prop oor:name="Color"> <value xsi:nil="true"/> diff --git a/officecfg/registry/schema/org/openoffice/Office/UI.xcs b/officecfg/registry/schema/org/openoffice/Office/UI.xcs index 0a87d153674c..0180598dbfd5 100644 --- a/officecfg/registry/schema/org/openoffice/Office/UI.xcs +++ b/officecfg/registry/schema/org/openoffice/Office/UI.xcs @@ -350,6 +350,16 @@ </info> </prop> </group> + <group oor:name="CalcCellFocus"> + <info> + <desc>Specifies the setting to change cell frame, col/row highlight and col/row header color in Calc</desc> + </info> + <prop oor:name="Color" oor:type="xs:int"> + <info> + <desc>Specifies the cell frame color for Calc</desc> + </info> + </prop> + </group> <group oor:name="CalcPageBreak"> <info> <desc>Specifies the settings used for page breaks in the page break preview in Calc.</desc> |