summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
authorTomaž Vajngerl <tomaz.vajngerl@collabora.co.uk>2015-02-25 14:36:37 +0900
committerTomaž Vajngerl <tomaz.vajngerl@collabora.co.uk>2015-03-02 11:38:17 +0900
commit05de5c9bf3bc989c72f081d8415c079f4b2ecf36 (patch)
tree6b8b1f2f003c8b922f8751badd97883eecc301fe /svtools
parent108cd7a38b55dc60deb1ac62372c06562f58b050 (diff)
make tabbar buttons flat by default
Change-Id: I31066defc8d3c645b2cd809f1e445178c95fc50e
Diffstat (limited to 'svtools')
-rw-r--r--svtools/source/control/tabbar.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svtools/source/control/tabbar.cxx b/svtools/source/control/tabbar.cxx
index bc8c54256746..e80af1e53a8a 100644
--- a/svtools/source/control/tabbar.cxx
+++ b/svtools/source/control/tabbar.cxx
@@ -95,7 +95,7 @@ class ImplTabButton : public PushButton
{
public:
ImplTabButton(TabBar* pParent, WinBits nWinStyle = 0)
- : PushButton(pParent, nWinStyle | WB_RECTSTYLE | WB_SMALLSTYLE | WB_NOLIGHTBORDER | WB_NOPOINTERFOCUS)
+ : PushButton(pParent, nWinStyle | WB_FLATBUTTON | WB_RECTSTYLE | WB_SMALLSTYLE | WB_NOLIGHTBORDER | WB_NOPOINTERFOCUS)
{}
TabBar* GetParent() const