diff options
Diffstat (limited to 'sfx2/source')
-rw-r--r-- | sfx2/source/dialog/backingwindow.cxx | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/sfx2/source/dialog/backingwindow.cxx b/sfx2/source/dialog/backingwindow.cxx index 8dc4663c6c03..50db1f7a8c3e 100644 --- a/sfx2/source/dialog/backingwindow.cxx +++ b/sfx2/source/dialog/backingwindow.cxx @@ -235,11 +235,18 @@ void BackingWindow::initControls() mpExtensionsButton->SetControlForeground(aButtonsText); mpAllButtonsBox->SetBackground(aButtonsBackground); - mpButtonsBox->SetBackground(aButtonsBackground); mpSmallButtonsBox->SetBackground(aButtonsBackground); mpHelpBox->SetBackground(aButtonsBackground); mpExtensionsBox->SetBackground(aButtonsBackground); + // motif image under the buttons + Wallpaper aWallpaper(get<FixedImage>("motif")->GetImage().GetBitmapEx()); + aWallpaper.SetStyle(WALLPAPER_BOTTOMRIGHT); + aWallpaper.SetColor(aButtonsBackground); + + mpButtonsBox->SetBackground(aWallpaper); + + // thin white rectangle aronud the Help and Extensions buttons mpThinBox1->SetBackground(aButtonsText); mpThinBox2->SetBackground(aButtonsText); |