mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-15 05:04:15 +01:00
Fix SeString Creator input length cutting off long macro strings
This commit is contained in:
parent
9b0c275b8b
commit
e2e3a01cc3
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue