summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2013-12-13 10:05:03 +0000
committerCaolán McNamara <caolanm@redhat.com>2013-12-13 10:06:16 +0000
commit6ec1253285ec39b31b82ba7bc7a2b0bd0f98ef7a (patch)
treeae6d59cd0928cb3fb4b703ed440957dbfb9d0405
parentda443ab58158d2b7ffa52742cec2be76e3aa2026 (diff)
Resolves: fdo#71192 options->appearence isn't all the same color
Change-Id: I8beaf1f4a1ea685af22ae0dafbff767bee98d3b4 (cherry picked from commit e3853a1abc9873a00478ba56b124e0a94f9896ba)
-rw-r--r--cui/source/options/optcolor.cxx4
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();