update
parent
6d7366f74c
commit
e4f02f50ca
|
@ -301,7 +301,6 @@ Item {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
Component{
|
||||
id:com_panel_item
|
||||
|
@ -314,7 +313,12 @@ Item {
|
|||
}
|
||||
}
|
||||
clip: true
|
||||
height: visible ? 38 : 0
|
||||
height: {
|
||||
if(model.parent){
|
||||
return model.parent.isExpand ? 38 : 0
|
||||
}
|
||||
return 38
|
||||
}
|
||||
visible: {
|
||||
if(model.parent){
|
||||
return model.parent.isExpand ? true : false
|
||||
|
|
Loading…
Reference in New Issue