Additional change to make Rainmeter.cpp case insensitve when installing default theme. Added Recycle Bin to illustro default theme.

This commit is contained in:
jsmorley
2010-11-07 13:14:51 +00:00
parent bddef71808
commit 2bf3299ded
3 changed files with 6 additions and 6 deletions

View File

@ -1689,7 +1689,7 @@ void CRainmeter::CheckSkinVersions()
CSystem::CopyFiles(strMainSkinsPath + menu[i].name, m_SkinPath);
// TODO: Temporary 'fix': If skin was illustro upgrade the themes too
if (menu[i].name == L"illustro")
if (!_wcsicmp(menu[i].name.c_str(), L"illustro"))
{
std::wstring strMainThemes = m_Path + L"Themes";
std::wstring strCurrentThemes = GetSettingsPath();