Fix SeString Creator input length cutting off long macro strings

This commit is contained in:
Haselnussbomber 2025-09-22 23:33:30 +02:00
parent 9b0c275b8b
commit e2e3a01cc3
No known key found for this signature in database
GPG key ID: BB905BB49E7295D1

View file

@ -696,7 +696,7 @@ internal class SeStringCreatorWidget : IDataWindowWidget
ImGui.TableNextColumn(); // Text
var message = entry.Message;
ImGui.SetNextItemWidth(-1);
if (ImGui.InputText($"##{i}_Message", ref message, 255))
if (ImGui.InputText($"##{i}_Message", ref message, 2048))
{
entry.Message = message;
updateString |= true;