obs-text: Fix formatting
This commit is contained in:
parent
bc3ed7bbf7
commit
d6b551c9d3
@ -657,9 +657,9 @@ void TextSource::LoadFileText()
|
||||
|
||||
void TextSource::TransformText()
|
||||
{
|
||||
if(text_transform == S_TRANSFORM_UPPERCASE)
|
||||
if (text_transform == S_TRANSFORM_UPPERCASE)
|
||||
transform(text.begin(), text.end(), text.begin(), towupper);
|
||||
else if(text_transform == S_TRANSFORM_LOWERCASE)
|
||||
else if (text_transform == S_TRANSFORM_LOWERCASE)
|
||||
transform(text.begin(), text.end(), text.begin(), towlower);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user