summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2013-09-06 12:22:50 +0100
committerCaolán McNamara <caolanm@redhat.com>2013-09-06 12:23:42 +0100
commitf96771165ea145a759f1bab76cd34bb70def04f6 (patch)
treefdaa3341ef13f3bd1669c03fb07a9ef33d3fa96e
parente85446e587704ffa31c50ee2b8fc1b21d6a16b12 (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
-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 0b4113640712..99e0b85c3c7a 100644
--- a/vcl/source/window/builder.cxx
+++ b/vcl/source/window/builder.cxx
@@ -1208,7 +1208,7 @@ Window *VclBuilder::makeObject(Window *pParent, const OString &name, const OStri
WinBits nBits = WB_LEFT|WB_BORDER|WB_3DLOOK;
if (!id.endsWith("-nospin"))
- nBits |= WB_SPIN;
+ nBits |= WB_SPIN | WB_REPEAT;
if (sPattern.isEmpty())
{