diff options
author | Tomaž Vajngerl <tomaz.vajngerl@collabora.co.uk> | 2015-05-28 18:42:39 +0900 |
---|---|---|
committer | Tomaž Vajngerl <tomaz.vajngerl@collabora.co.uk> | 2015-05-28 18:56:01 +0900 |
commit | 02482eef0189e6c9f6ea233d495c9fd8a0d2a877 (patch) | |
tree | 9594b9c918a869da56e9030f95f3de407af83e30 /dbaccess | |
parent | ee25bc3cad9f31a253c2a0b0297516c7f0989222 (diff) |
fix drawing treelistbox with redefined background in dbaccess
Change-Id: Ia55797e3e42309f9d37d5335088f7657d99954de
Diffstat (limited to 'dbaccess')
-rw-r--r-- | dbaccess/source/ui/app/AppDetailView.cxx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/dbaccess/source/ui/app/AppDetailView.cxx b/dbaccess/source/ui/app/AppDetailView.cxx index 0ae17bf52169..7329b0b4cd3a 100644 --- a/dbaccess/source/ui/app/AppDetailView.cxx +++ b/dbaccess/source/ui/app/AppDetailView.cxx @@ -87,6 +87,8 @@ OCreationList::OCreationList( OTasksWindow& _rParent ) void OCreationList::Paint(vcl::RenderContext& rRenderContext, const Rectangle& _rRect ) { + SetBackground(); + if (m_pMouseDownEntry) m_aOriginalFont = rRenderContext.GetFont(); @@ -119,11 +121,13 @@ void OCreationList::PreparePaint(vcl::RenderContext& rRenderContext, SvTreeListE // and temporary set a transparent background, for all the other // paint operations the SvTreeListBox is going to do - aEntryBackground = Wallpaper(Color(COL_TRANSPARENT)); + aEntryBackground = Wallpaper(); + _pEntry->SetBackColor(Color(COL_TRANSPARENT)); } } rRenderContext.SetBackground(aEntryBackground); + _pEntry->SetBackColor(aEntryBackground.GetColor()); } void OCreationList::SelectSearchEntry( const void* _pEntry ) |