diff options
author | Rachit Gupta <rachitgupta1792@gmail.com> | 2014-06-27 23:52:42 +0530 |
---|---|---|
committer | Jan Holesovsky <kendy@collabora.com> | 2014-08-14 19:43:29 +0200 |
commit | 4017908018a0ccc771247f09c47798dd20644db3 (patch) | |
tree | 28319be1d08e4b1d1203c798e75ba60e4c66ad6d /vcl | |
parent | e7e5ab1683a86de587f2c8b5511d13c334548903 (diff) |
The Personas can be install through oxt extensions.
The user can install an oxt extension and choose his/her theme from
the Personalization page.
* Created a template in Common.xcs registry to hold the values for the
PersonasList set.
* Added 3 buttons to personalization_tab.ui to incorporate the latest 3
personas installed through extensions.
* Currently, only 3 installed personas are shown alongwith the default
available personas.
Change-Id: I30a40ae48d17f4ed8caef33854ef88afcbec5a54
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/app/settings.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/app/settings.cxx b/vcl/source/app/settings.cxx index 42787205e5fa..ebaa4eb1ebbe 100644 --- a/vcl/source/app/settings.cxx +++ b/vcl/source/app/settings.cxx @@ -2158,7 +2158,7 @@ static void setupPersonaHeaderFooter( WhichPersona eWhich, OUString& rHeaderFoot rtl::Bootstrap::expandMacros( gallery ); gallery += "/user/gallery/personas/"; } - else if (aPersona == "default") + else if ( aPersona == "default" && !aPersonaSettings.startsWith( "vnd.sun.star.expand" ) ) { gallery = "$BRAND_BASE_DIR/" LIBO_SHARE_FOLDER; gallery += "/gallery/personas/"; |