Skip to content
Permalink
Browse files
Fixed bug with theme switching not working properly
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@12249 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
timlinux committed Nov 25, 2009
1 parent 62be975 commit 07f142b
Showing 1 changed file with 1 addition and 1 deletion.
@@ -137,7 +137,7 @@ const QString QgsApplication::activeThemePath()
*/
void QgsApplication::setThemeName( const QString theThemeName )
{
QString myPath = mPkgDataPath + "/themes/" + theThemeName + "/";
QString myPath = ":/images/themes/" + theThemeName + "/";
//check it exists and if not roll back to default theme
if ( QFile::exists( myPath ) )
{

0 comments on commit 07f142b

Please sign in to comment.