apply theme to measured too
This commit is contained in:
parent
6d5f2c4f5f
commit
e11d4f4e69
1 changed files with 4 additions and 1 deletions
|
|
@ -505,8 +505,11 @@ func (obj *Object) Text() *d2target.MText {
|
||||||
}
|
}
|
||||||
fontSize := d2fonts.FONT_SIZE_M
|
fontSize := d2fonts.FONT_SIZE_M
|
||||||
|
|
||||||
|
labelVal := obj.Attributes.Label.Value
|
||||||
if obj.Class != nil || obj.SQLTable != nil {
|
if obj.Class != nil || obj.SQLTable != nil {
|
||||||
fontSize = d2fonts.FONT_SIZE_L
|
fontSize = d2fonts.FONT_SIZE_L
|
||||||
|
} else if obj.Graph.Theme != nil && obj.Graph.Theme.SpecialRules.CapsLock {
|
||||||
|
labelVal = strings.ToUpper(labelVal)
|
||||||
}
|
}
|
||||||
|
|
||||||
if obj.OuterSequenceDiagram() == nil {
|
if obj.OuterSequenceDiagram() == nil {
|
||||||
|
|
@ -527,7 +530,7 @@ func (obj *Object) Text() *d2target.MText {
|
||||||
isBold = false
|
isBold = false
|
||||||
}
|
}
|
||||||
return &d2target.MText{
|
return &d2target.MText{
|
||||||
Text: obj.Attributes.Label.Value,
|
Text: labelVal,
|
||||||
FontSize: fontSize,
|
FontSize: fontSize,
|
||||||
IsBold: isBold,
|
IsBold: isBold,
|
||||||
IsItalic: isItalic,
|
IsItalic: isItalic,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue