summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorYousuf Philips <philipz85@hotmail.com>2016-10-09 12:48:00 +0400
committerYousuf Philips <philipz85@hotmail.com>2016-10-09 18:19:26 +0000
commitd6dd17079f2584f3b7a54d67324d687e33ce141c (patch)
tree531e99dbdc4224f26244bd35b6cb60ab4bf67815 /vcl
parentc31d22c96e791b77a9e61e1fd08fbac482915188 (diff)
tdf#86472 Fix breeze borders and set breeze_dark fallback
Change-Id: Id7c536fee42e9f8c69dd058aa683baf5be58def6 Reviewed-on: https://gerrit.libreoffice.org/29620 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Yousuf Philips <philipz85@hotmail.com>
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/image/ImplImageTree.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/vcl/source/image/ImplImageTree.cxx b/vcl/source/image/ImplImageTree.cxx
index 1f7f1eca2480..30659c661166 100644
--- a/vcl/source/image/ImplImageTree.cxx
+++ b/vcl/source/image/ImplImageTree.cxx
@@ -182,6 +182,8 @@ OUString ImplImageTree::fallbackStyle(const OUString &style)
return OUString("galaxy");
else if (style == "sifr")
return OUString("breeze");
+ else if (style == "breeze_dark")
+ return OUString("breeze");
return OUString("tango");
}