diff options
author | Tomaž Vajngerl <tomaz.vajngerl@collabora.co.uk> | 2019-12-12 21:41:39 +0100 |
---|---|---|
committer | Tomaž Vajngerl <tomaz.vajngerl@collabora.co.uk> | 2019-12-12 21:49:27 +0100 |
commit | 6c0ddbaec3db2958b8c393b54ca29dd3862d931a (patch) | |
tree | 2bd1d09e33ffe01369303a8acf77119e74ad5753 | |
parent | a5ded3182681e59ce8223cf07d192d587bd7af0e (diff) |
iOS theme: set spinbox orientation to "decrease-edit-increase"CODE-4.2.0-1
iOS theme was designed to have spinbox orientation set to
"decrease-edit-increase", but this was not explicitly set in the
theme definition as it was also the default. The defualt was
changed recently to "stacked" and it broke the iOS theme.
Change-Id: If43fa46c04415dda1efe0855c4901b5aede7eb32
(cherry picked from commit ab9ac0fc697f57f0804dea03812dd2adfd99794b)
-rw-r--r-- | vcl/uiconfig/theme_definitions/ios/definition.xml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/vcl/uiconfig/theme_definitions/ios/definition.xml b/vcl/uiconfig/theme_definitions/ios/definition.xml index 8725e14ee1f2..958c85600e15 100644 --- a/vcl/uiconfig/theme_definitions/ios/definition.xml +++ b/vcl/uiconfig/theme_definitions/ios/definition.xml @@ -95,6 +95,11 @@ selected="true|false|any" button-value="true|false|any" extra="{various}" + + control specific: + <spinbox> attributes: + - orientation: stacked (default), edit-decrease-increase, decrease-edit-increase + --> <pushbutton> @@ -242,7 +247,7 @@ </listbox> <spinbox> - <part value="Entire"> + <part value="Entire" orientation="decrease-edit-increase"> <state> <rect stroke="#ffffff" fill="#ffffff" stroke-width="0" /> </state> |