diff options
author | sr55 <[email protected]> | 2017-12-20 21:26:38 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2017-12-20 21:27:01 +0000 |
commit | f0d14d0ba3cf848577f76c0ec145c04d288b1478 (patch) | |
tree | 25b0b7d7f1d31b0b1cd7259682f8969a467d2cd3 /win/CS/HandBrakeWPF/Extensions | |
parent | b9b77487aa14741e6662cc1f818cc5fbc1d9f1b5 (diff) |
WinGui: Few small bug fixes. AutoName All Caps, Layout on the main window.
Diffstat (limited to 'win/CS/HandBrakeWPF/Extensions')
-rw-r--r-- | win/CS/HandBrakeWPF/Extensions/StringExtensions.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/win/CS/HandBrakeWPF/Extensions/StringExtensions.cs b/win/CS/HandBrakeWPF/Extensions/StringExtensions.cs index d09c99e20..d3324a913 100644 --- a/win/CS/HandBrakeWPF/Extensions/StringExtensions.cs +++ b/win/CS/HandBrakeWPF/Extensions/StringExtensions.cs @@ -24,7 +24,8 @@ namespace HandBrakeWPF.Extensions public static string ToTitleCase(this string input)
{
TextInfo textInfo = new CultureInfo(CultureInfo.CurrentCulture.Name, false).TextInfo;
- return textInfo.ToTitleCase(input);
+ return textInfo.ToTitleCase(input.ToLower());
+
}
}
}
|