[Libreoffice-commits] core.git: vcl/source
Yousuf Philips
philipz85 at hotmail.com
Mon May 11 07:25:52 PDT 2015
vcl/source/gdi/impimagetree.cxx | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
New commits:
commit 683cb8b9bd5dddfef6b64753bcaffd7d38d61a35
Author: Yousuf Philips <philipz85 at hotmail.com>
Date: Thu May 7 14:50:25 2015 +0400
ICONS: Breeze fallsback on galaxy and sifr fallsback on breeze
Change-Id: I06e680caf952152d0a5eb1486f1de330227b60ee
Reviewed-on: https://gerrit.libreoffice.org/15661
Reviewed-by: Jan Holesovsky <kendy at collabora.com>
Tested-by: Jan Holesovsky <kendy at collabora.com>
diff --git a/vcl/source/gdi/impimagetree.cxx b/vcl/source/gdi/impimagetree.cxx
index e1a36df..5116a36 100644
--- a/vcl/source/gdi/impimagetree.cxx
+++ b/vcl/source/gdi/impimagetree.cxx
@@ -108,7 +108,9 @@ OUString ImplImageTree::fallbackStyle(const OUString &style)
else if (style == "tango")
return OUString("galaxy");
else if (style == "breeze")
- return OUString("sifr");
+ return OUString("galaxy");
+ else if (style == "sifr")
+ return OUString("breeze");
return OUString("tango");
}
More information about the Libreoffice-commits
mailing list