1
0
Derivar 0

Text.IsZero to check more values

master
Noah 2020-06-04 21:59:19 -07:00
ascendente e495ec6439
cometimento 0642b65e87
1 ficheiros modificados com 1 adições e 1 eliminações

Ver ficheiro

@ -169,7 +169,7 @@ func (t Text) String() string {
// IsZero returns if the Text is the zero value.
func (t Text) IsZero() bool {
return t.Text == "" && t.Size == 0 && t.Color == Invisible && t.Padding == 0 && t.Stroke == Invisible && t.Shadow == Invisible
return t.Text == "" && t.Size == 0 && t.Color == Invisible && t.Padding == 0 && t.PadX == 0 && t.PadY == 0 && t.Stroke == Invisible && t.Shadow == Invisible
}
// Common color names.