Fixed issue while setting the view radius corner values from resource file

This commit is contained in:
Mikalai Turankou 2024-11-14 12:26:35 +03:00
parent daf41dd7e0
commit bdd722ba09
1 changed files with 2 additions and 2 deletions

View File

@ -592,8 +592,8 @@ func (radius *radiusPropertyData) Set(tag string, value any) bool {
case string:
if strings.Contains(value, "/") {
if values := strings.Split(value, "/"); len(values) == 2 {
xOK := radius.Set(tag+"-x", value[0])
yOK := radius.Set(tag+"-y", value[1])
xOK := radius.Set(tag+"-x", values[0])
yOK := radius.Set(tag+"-y", values[1])
return xOK && yOK
} else {
notCompatibleType(tag, value)