diff options
author | Caolán McNamara <caolanm@redhat.com> | 2013-12-13 10:05:03 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-12-13 10:05:37 +0000 |
commit | e3853a1abc9873a00478ba56b124e0a94f9896ba (patch) | |
tree | f14905da6861dc00fbf0b74e8603ca93236764ab /cui | |
parent | c42c57e665ad65b3a270ae223f1012ac988acdd3 (diff) |
Resolves: fdo#71192 options->appearence isn't all the same color
Change-Id: I8beaf1f4a1ea685af22ae0dafbff767bee98d3b4
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/options/optcolor.cxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/cui/source/options/optcolor.cxx b/cui/source/options/optcolor.cxx index d09fd7798b27..bf95ce838803 100644 --- a/cui/source/options/optcolor.cxx +++ b/cui/source/options/optcolor.cxx @@ -598,7 +598,9 @@ void ColorConfigWindow_Impl::SetAppearance () Wallpaper const aBackWall(aBackColor); for (size_t i = 0; i != vChapters.size(); ++i) vChapters[i]->Show(aBackWall); - SetBackground(Wallpaper(rStyleSettings.GetFieldColor())); + Wallpaper aBack(rStyleSettings.GetFieldColor()); + SetBackground(aBack); + m_pGrid->SetBackground(aBack); // #104195# when the window color is the same as the text color it has to be changed Color aWinCol = rStyleSettings.GetWindowColor(); |