mirror of https://github.com/anoshenko/rui.git
Fixed issue while setting the view radius corner values from resource file
This commit is contained in:
parent
daf41dd7e0
commit
bdd722ba09
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue