summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjoern Michaelsen <bjoern.michaelsen@canonical.com>2015-10-20 23:10:36 +0200
committerBjoern Michaelsen <bjoern.michaelsen@canonical.com>2015-10-23 12:31:57 +0200
commit3622c7027af764e21ba48777f746a393e817ac63 (patch)
tree051a291ebb6d69a0e598fa7f45977d1bf0a836a3
parent2b1a5dcc28e142e8305c23b19f254ba24f5af456 (diff)
on unity, default to human if possible
-rw-r--r--vcl/source/app/IconThemeSelector.cxx3
1 files changed, 3 insertions, 0 deletions
diff --git a/vcl/source/app/IconThemeSelector.cxx b/vcl/source/app/IconThemeSelector.cxx
index bed75fab2129..fb73155d57ab 100644
--- a/vcl/source/app/IconThemeSelector.cxx
+++ b/vcl/source/app/IconThemeSelector.cxx
@@ -65,6 +65,9 @@ IconThemeSelector::GetIconThemeForDesktopEnvironment(const OUString& desktopEnvi
else if ( desktopEnvironment.equalsIgnoreAsciiCase("MacOSX") ) {
r = "breeze";
}
+ else if ( desktopEnvironment.equalsIgnoreAsciiCase("unity") ) {
+ r = "human";
+ }
else {
r = FALLBACK_ICON_THEME_ID;
}