mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
Additional change to make Rainmeter.cpp case insensitve when installing default theme. Added Recycle Bin to illustro default theme.
This commit is contained in:
@ -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();
|
||||
|
Reference in New Issue
Block a user