[Libreoffice-commits] core.git: Branch 'libreoffice-5-1' - sfx2/source
Caolán McNamara
caolanm at redhat.com
Sun Jul 17 18:17:58 UTC 2016
sfx2/source/dialog/dinfdlg.cxx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
New commits:
commit bd6d7374df93cc173967a95f1deae2d667c6d963
Author: Caolán McNamara <caolanm at redhat.com>
Date: Sat Jul 16 21:58:31 2016 +0100
Resolves: tdf#100910 yes/no doesn't clear bg
Change-Id: If6a31cefe7137d338a57b5a28dfda63809957190
(cherry picked from commit 997c7accd393bc665538403a5738ce1a626d9665)
Reviewed-on: https://gerrit.libreoffice.org/27260
Tested-by: Jenkins <ci at libreoffice.org>
Reviewed-by: Markus Mohrhard <markus.mohrhard at googlemail.com>
diff --git a/sfx2/source/dialog/dinfdlg.cxx b/sfx2/source/dialog/dinfdlg.cxx
index 4d08444..76f40b4 100644
--- a/sfx2/source/dialog/dinfdlg.cxx
+++ b/sfx2/source/dialog/dinfdlg.cxx
@@ -1255,10 +1255,10 @@ CustomPropertiesYesNoButton::CustomPropertiesYesNoButton( vcl::Window* pParent,
m_aNoButton ( VclPtr<RadioButton>::Create(this, ResId( RB_PROPERTY_NO, *rResId.GetResMgr() )) )
{
FreeResource();
- Wallpaper aWall( Color( COL_TRANSPARENT ) );
- SetBackground( aWall );
+ SetBackground( Wallpaper( GetSettings().GetStyleSettings().GetFieldColor() ) );
SetBorderStyle( WindowBorderStyle::MONO );
CheckNo();
+ Wallpaper aWall( Color( COL_TRANSPARENT ) );
m_aYesButton->SetBackground( aWall );
m_aNoButton->SetBackground( aWall );
}
More information about the Libreoffice-commits
mailing list