diff options
author | Caolán McNamara <caolanm@redhat.com> | 2013-09-06 12:22:50 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-09-06 12:23:42 +0100 |
commit | f96771165ea145a759f1bab76cd34bb70def04f6 (patch) | |
tree | fdaa3341ef13f3bd1669c03fb07a9ef33d3fa96e | |
parent | e85446e587704ffa31c50ee2b8fc1b21d6a16b12 (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.cxx | 2 |
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()) { |