summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2013-09-06 12:22:50 +0100
committerAndras Timar <andras.timar@collabora.com>2013-11-05 11:59:17 +0100
commit242cf2f2c170c061992206965106b8452b93c3a7 (patch)
tree9e69bde73e826b00eba74a319ee24ae2abeee9b9 /vcl
parent6d7150c8038e4f777993fb428f6f3a309fde8e80 (diff)
Resolves: fdo#68081 why would I want a spinner that doesn't repeat
surely WB_SPIN should imply repeat in the first place, *shrug* Change-Id: I1e4cb5a01d473cd0f8d907d566cd26d51a81da93 (cherry picked from commit f96771165ea145a759f1bab76cd34bb70def04f6) Reviewed-on: https://gerrit.libreoffice.org/5838 Reviewed-by: Fridrich Strba <fridrich@documentfoundation.org> Tested-by: Fridrich Strba <fridrich@documentfoundation.org>
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/window/builder.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/window/builder.cxx b/vcl/source/window/builder.cxx
index feedbaf629d8..a3979129993d 100644
--- a/vcl/source/window/builder.cxx
+++ b/vcl/source/window/builder.cxx
@@ -704,7 +704,7 @@ Window *VclBuilder::makeObject(Window *pParent, const OString &name, const OStri
WinBits nBits = WB_RIGHT|WB_BORDER|WB_3DLOOK;
if (!id.endsWith("-nospin"))
- nBits |= WB_SPIN;
+ nBits |= WB_SPIN | WB_REPEAT;
if (sPattern.isEmpty())
{