mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-25 06:01:49 +01:00
SeStringEvaluator: Fix HeadAll not capitalizing correctly (#2240)
* Fix obsoletes * Fix HeadAll not capitalizing correctly * Fix incorrect denoun cases in SeString Creator * Implement Utf8String.ToUpper in C# * Handle characters with accents too * Add remarks to ToUpper functions
This commit is contained in:
parent
f96e2ae37c
commit
499952b3d2
6 changed files with 138 additions and 9 deletions
|
|
@ -1014,7 +1014,7 @@ internal class SeStringCreatorWidget : IDataWindowWidget
|
|||
ImGui.TextUnformatted(Enum.GetName(articleTypeEnumType, u32));
|
||||
}
|
||||
|
||||
if (macroCode is MacroCode.DeNoun && exprIdx == 4 && u32 is >= 0 and <= 3)
|
||||
if (macroCode is MacroCode.DeNoun && exprIdx == 4 && u32 is >= 0 and <= 4)
|
||||
{
|
||||
ImGui.SameLine();
|
||||
ImGui.TextUnformatted(NounProcessorWidget.GermanCases[u32]);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue