summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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();