diff options
author | Szymon Kłos <szymon.klos@collabora.com> | 2017-10-18 18:15:29 +0200 |
---|---|---|
committer | Szymon Kłos <szymon.klos@collabora.com> | 2017-10-18 18:17:32 +0200 |
commit | a1f93eee75450c3ab6bc623bfad4f850260b86d0 (patch) | |
tree | 6461f07108943ac4019b6022ad67b1049bdd219e | |
parent | 2874a31e4830c2e899a057530e9799bbae456d79 (diff) |
tdf#107224 use correct bg for notebookbar
Change-Id: I26093cb9cf0170aa9ba4ccfc8c8556c2e78086b3
Reviewed-on: https://gerrit.libreoffice.org/43515
Reviewed-by: Szymon Kłos <szymon.klos@collabora.com>
Tested-by: Szymon Kłos <szymon.klos@collabora.com>
-rw-r--r-- | vcl/source/control/notebookbar.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/control/notebookbar.cxx b/vcl/source/control/notebookbar.cxx index dc47f66d82b1..ee3e05ab3852 100644 --- a/vcl/source/control/notebookbar.cxx +++ b/vcl/source/control/notebookbar.cxx @@ -173,7 +173,7 @@ void NotebookBar::UpdateBackground() if (!aPersona.IsEmpty()) SetBackground(Wallpaper(aPersona)); else - SetBackground(rStyleSettings.GetMenuBarColor()); + SetBackground(rStyleSettings.GetDialogColor()); Invalidate(tools::Rectangle(Point(0,0), GetSizePixel())); } |