Skip to content

Commit 2b7a7dd

Browse files
author
timlinux
committedNov 25, 2009
Fixed bug with theme switching not working properly
git-svn-id: http://svn.osgeo.org/qgis/trunk@12249 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent af96cfd commit 2b7a7dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/core/qgsapplication.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ const QString QgsApplication::activeThemePath()
137137
*/
138138
void QgsApplication::setThemeName( const QString theThemeName )
139139
{
140-
QString myPath = mPkgDataPath + "/themes/" + theThemeName + "/";
140+
QString myPath = ":/images/themes/" + theThemeName + "/";
141141
//check it exists and if not roll back to default theme
142142
if ( QFile::exists( myPath ) )
143143
{

0 commit comments

Comments
 (0)
Please sign in to comment.