mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-14 20:54:16 +01:00
fix: correct order of CreateItemLink payloads
This commit is contained in:
parent
e47bfc7aca
commit
dd845a30f0
1 changed files with 2 additions and 2 deletions
|
|
@ -210,10 +210,10 @@ public class SeString
|
||||||
|
|
||||||
// Note: `SeStringBuilder.AddItemLink` uses this function, so don't call it here!
|
// Note: `SeStringBuilder.AddItemLink` uses this function, so don't call it here!
|
||||||
return new SeStringBuilder()
|
return new SeStringBuilder()
|
||||||
.Add(new ItemPayload(itemId, kind))
|
|
||||||
.Append(TextArrowPayloads)
|
|
||||||
.AddUiForeground(textColor)
|
.AddUiForeground(textColor)
|
||||||
.AddUiGlow(textGlowColor)
|
.AddUiGlow(textGlowColor)
|
||||||
|
.Add(new ItemPayload(itemId, kind))
|
||||||
|
.Append(TextArrowPayloads)
|
||||||
.AddText(displayName)
|
.AddText(displayName)
|
||||||
.AddUiGlowOff()
|
.AddUiGlowOff()
|
||||||
.AddUiForegroundOff()
|
.AddUiForegroundOff()
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue