Some of the plugins don't work with the dynamic variables so the feature is now disabled for them.

This commit is contained in:
Kimmo Pekkola
2009-08-26 19:29:49 +00:00
parent 9cf291517a
commit ffdec7be65
5 changed files with 7 additions and 6 deletions

View File

@ -180,7 +180,7 @@ LPCTSTR ReadConfigString(LPCTSTR section, LPCTSTR key, LPCTSTR defValue)
CConfigParser* parser = Rainmeter->GetCurrentParser();
if (parser)
{
return parser->ReadString(section, key, defValue).c_str();
return parser->ReadString(section, key, defValue, false).c_str();
}
}
return NULL;