diff options
author | Irgaliev Amin <irgaliev01@mail.ru> | 2023-11-22 22:43:18 +0400 |
---|---|---|
committer | Samuel Mehrbrodt <samuel.mehrbrodt@allotropia.de> | 2023-11-22 21:20:09 +0100 |
commit | 847001ffbbcaf6d2657a5cce18f6c58151efbd2c (patch) | |
tree | 69f46eac99c134b2d1ca4d92d7ff8d629417fff8 /officecfg | |
parent | 3709a8e5f03a6498a6f3ac7c6671d4b08fc46ea3 (diff) |
tdf#158126 UI: Scalable buttons for Impress navigation bar
On some panels, small icons of navigation bar are not
convenient to use. Currently there are 4 sizes available
for other icons: automatic, small, large and extra large.
It is useful to implement support for scalable buttons in
the Impress navigation bar. This setting can be located in
Slide show -> Slide Show Settings (Display section)
Change-Id: Ief8cc0cbf4eac98ee90bf3e993e4fc44cea0165e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159294
Tested-by: Jenkins
Reviewed-by: Samuel Mehrbrodt <samuel.mehrbrodt@allotropia.de>
Diffstat (limited to 'officecfg')
-rw-r--r-- | officecfg/registry/schema/org/openoffice/Office/Impress.xcs | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/officecfg/registry/schema/org/openoffice/Office/Impress.xcs b/officecfg/registry/schema/org/openoffice/Office/Impress.xcs index baafb0972c94..88166cc197ef 100644 --- a/officecfg/registry/schema/org/openoffice/Office/Impress.xcs +++ b/officecfg/registry/schema/org/openoffice/Office/Impress.xcs @@ -142,6 +142,36 @@ </info> <value>true</value> </prop> + <prop oor:name="NavigationBtnScale" oor:type="xs:int" oor:nillable="false"> + <!-- UIHints: Tools - Options - Impress - View - [Section] Navigation --> + <info> + <desc>Specifies which size of the icons is used for the + navigation bar.</desc> + </info> + <constraints> + <enumeration oor:value="0"> + <info> + <desc>automatic (small) icons</desc> + </info> + </enumeration> + <enumeration oor:value="1"> + <info> + <desc>small icons</desc> + </info> + </enumeration> + <enumeration oor:value="2"> + <info> + <desc>large icons</desc> + </info> + </enumeration> + <enumeration oor:value="3"> + <info> + <desc>extralarge icons</desc> + </info> + </enumeration> + </constraints> + <value>0</value> + </prop> </group> <group oor:name="Other"> <info> |