Improve (hopefully) some handling of options and stuff. Remove localization because wonky.

This commit is contained in:
Ottermandias 2023-11-16 18:21:50 +01:00
parent 68327d3563
commit ec7a53bee2
7 changed files with 52 additions and 36 deletions

View file

@ -17,8 +17,6 @@ public partial class CustomizationDrawer
ImGui.SameLine();
using var group = ImRaii.Group();
DrawRaceCombo();
var gender = _service.AwaitedService.GetName(CustomName.Gender);
var clan = _service.AwaitedService.GetName(CustomName.Clan);
if (_withApply)
{
using var disabled = ImRaii.Disabled(_locked);
@ -33,7 +31,7 @@ public partial class CustomizationDrawer
}
ImGui.AlignTextToFramePadding();
ImGui.TextUnformatted($"{gender} & {clan}");
ImGui.TextUnformatted("Gender & Clan");
}
private void DrawGenderSelector()