diff options
author | Tomaž Vajngerl <tomaz.vajngerl@collabora.co.uk> | 2015-02-25 14:36:37 +0900 |
---|---|---|
committer | Tomaž Vajngerl <tomaz.vajngerl@collabora.co.uk> | 2015-03-02 11:38:17 +0900 |
commit | 05de5c9bf3bc989c72f081d8415c079f4b2ecf36 (patch) | |
tree | 6b8b1f2f003c8b922f8751badd97883eecc301fe | |
parent | 108cd7a38b55dc60deb1ac62372c06562f58b050 (diff) |
make tabbar buttons flat by default
Change-Id: I31066defc8d3c645b2cd809f1e445178c95fc50e
-rw-r--r-- | svtools/source/control/tabbar.cxx | 2 |
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 |