no message

master
DESKTOP-4RNDQIC\29019 2021-05-09 22:30:11 +08:00
parent 3a1fc0bbfe
commit 7ca204390c
1 changed files with 2 additions and 2 deletions

View File

@ -92,10 +92,10 @@ func RangeWidget(p *Widget ) string{
parent := ""
tmp := p
for ;tmp != nil;tmp = tmp.Parent{
parent = tmp.Class + " #" + tmp.Name + " " + parent
parent = tmp.Class + "#" + tmp.Name + " " + parent
}
ret += parent + " \r\n{\r\n}\r\n"
if(p.Childs.Len() > 0){
wid := p.Childs.Front()
for ;wid != nil;wid = wid.Next(){