mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-21 16:09:19 +01:00
fix: add PopupBorderSize to StyleModelV1 (closes #725)
This commit is contained in:
parent
d3c9ae3cb6
commit
6d99ad764f
1 changed files with 7 additions and 0 deletions
|
|
@ -38,6 +38,7 @@ namespace Dalamud.Interface.Style
|
||||||
ChildRounding = 0,
|
ChildRounding = 0,
|
||||||
ChildBorderSize = 1,
|
ChildBorderSize = 1,
|
||||||
PopupRounding = 0,
|
PopupRounding = 0,
|
||||||
|
PopupBorderSize = 0,
|
||||||
FramePadding = new Vector2(4, 3),
|
FramePadding = new Vector2(4, 3),
|
||||||
FrameRounding = 4,
|
FrameRounding = 4,
|
||||||
FrameBorderSize = 0,
|
FrameBorderSize = 0,
|
||||||
|
|
@ -147,6 +148,7 @@ namespace Dalamud.Interface.Style
|
||||||
ChildRounding = 0,
|
ChildRounding = 0,
|
||||||
ChildBorderSize = 1,
|
ChildBorderSize = 1,
|
||||||
PopupRounding = 0,
|
PopupRounding = 0,
|
||||||
|
PopupBorderSize = 0,
|
||||||
FramePadding = new Vector2(4, 3),
|
FramePadding = new Vector2(4, 3),
|
||||||
FrameRounding = 4,
|
FrameRounding = 4,
|
||||||
FrameBorderSize = 0,
|
FrameBorderSize = 0,
|
||||||
|
|
@ -274,6 +276,9 @@ namespace Dalamud.Interface.Style
|
||||||
[JsonProperty("i")]
|
[JsonProperty("i")]
|
||||||
public float PopupRounding { get; set; }
|
public float PopupRounding { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("ab")]
|
||||||
|
public float PopupBorderSize { get; set; }
|
||||||
|
|
||||||
[JsonProperty("j")]
|
[JsonProperty("j")]
|
||||||
public Vector2 FramePadding { get; set; }
|
public Vector2 FramePadding { get; set; }
|
||||||
|
|
||||||
|
|
@ -354,6 +359,7 @@ namespace Dalamud.Interface.Style
|
||||||
model.ChildRounding = style.ChildRounding;
|
model.ChildRounding = style.ChildRounding;
|
||||||
model.ChildBorderSize = style.ChildBorderSize;
|
model.ChildBorderSize = style.ChildBorderSize;
|
||||||
model.PopupRounding = style.PopupRounding;
|
model.PopupRounding = style.PopupRounding;
|
||||||
|
model.PopupBorderSize = style.PopupBorderSize;
|
||||||
model.FramePadding = style.FramePadding;
|
model.FramePadding = style.FramePadding;
|
||||||
model.FrameRounding = style.FrameRounding;
|
model.FrameRounding = style.FrameRounding;
|
||||||
model.FrameBorderSize = style.FrameBorderSize;
|
model.FrameBorderSize = style.FrameBorderSize;
|
||||||
|
|
@ -418,6 +424,7 @@ namespace Dalamud.Interface.Style
|
||||||
style.ChildRounding = this.ChildRounding;
|
style.ChildRounding = this.ChildRounding;
|
||||||
style.ChildBorderSize = this.ChildBorderSize;
|
style.ChildBorderSize = this.ChildBorderSize;
|
||||||
style.PopupRounding = this.PopupRounding;
|
style.PopupRounding = this.PopupRounding;
|
||||||
|
style.PopupBorderSize = this.PopupBorderSize;
|
||||||
style.FramePadding = this.FramePadding;
|
style.FramePadding = this.FramePadding;
|
||||||
style.FrameRounding = this.FrameRounding;
|
style.FrameRounding = this.FrameRounding;
|
||||||
style.FrameBorderSize = this.FrameBorderSize;
|
style.FrameBorderSize = this.FrameBorderSize;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue