Fixes and issue with InputText plugin failing if a "config name" has a space in it.

This commit is contained in:
jsmorley 2011-02-15 17:39:24 +00:00
parent fe9fd9f476
commit cb3a7d3a75

View File

@ -227,7 +227,9 @@ LPCTSTR PluginBridge(LPCTSTR _sCommand, LPCTSTR _sData)
CMeterWindow *meterWindow = Rainmeter->GetMeterWindowByINI(sData);
if (meterWindow)
{
result = meterWindow->GetSkinName();
result = L"\"";
result += meterWindow->GetSkinName();
result += L"\"";
return result.c_str();
}