diff options
author | Szymon Kłos <eszkadev@gmail.com> | 2017-03-08 17:26:37 +0100 |
---|---|---|
committer | Szymon Kłos <eszkadev@gmail.com> | 2017-03-08 18:48:06 +0000 |
commit | b3dc0386bd0749ad93f5cd649176e028fe4e8360 (patch) | |
tree | 18b7c7efff37e13730d5ae92f0adf154bd621154 /vcl/source/control/tabctrl.cxx | |
parent | 773e4e13eb0673a2f34b1adfc5ee4fd579d986a6 (diff) |
tdf#106211 Add notebookbar icon transparency
+ modified icon (set transparent color to black)
+ added transparency support for loaded icon
Change-Id: I2dd8581e7d667096f08eb8c4c038e96a7f007dd3
Reviewed-on: https://gerrit.libreoffice.org/34979
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Szymon Kłos <eszkadev@gmail.com>
Diffstat (limited to 'vcl/source/control/tabctrl.cxx')
-rw-r--r-- | vcl/source/control/tabctrl.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/control/tabctrl.cxx b/vcl/source/control/tabctrl.cxx index 7e8145d6389b..34dc980808bf 100644 --- a/vcl/source/control/tabctrl.cxx +++ b/vcl/source/control/tabctrl.cxx @@ -2211,7 +2211,7 @@ NotebookbarTabControl::NotebookbarTabControl(vcl::Window* pParent) , bLastContextWasSupported(true) , eLastContext(vcl::EnumContext::Context::Any) { - Bitmap aBitmap(VclResId(SV_RESID_BITMAP_NOTEBOOKBAR)); + BitmapEx aBitmap(VclResId(SV_RESID_BITMAP_NOTEBOOKBAR), Color()); InsertPage(1, ""); SetPageImage(1, Image(aBitmap)); } |