This commit is contained in:
zhuzichu
2023-09-27 18:10:20 +08:00
parent 8e1e8a9db5
commit 4a03ad4227
3 changed files with 31 additions and 62 deletions

View File

@ -68,7 +68,6 @@ Button {
iconSource: control.iconSource
}
}
Component{
id:com_row
RowLayout{
@ -82,23 +81,8 @@ Button {
Layout.alignment: Qt.AlignVCenter | Qt.AlignHCenter
visible: display !== Button.IconOnly
}
FluTooltip{
id:tool_tip
visible: {
if(control.text === ""){
return false
}
if(control.display !== Button.IconOnly){
return false
}
return hovered
}
text:control.text
delay: 1000
}
}
}
Component{
id:com_column
ColumnLayout{
@ -112,23 +96,8 @@ Button {
Layout.alignment: Qt.AlignVCenter | Qt.AlignHCenter
visible: display !== Button.IconOnly
}
FluTooltip{
id:tool_tip
visible: {
if(control.text === ""){
return false
}
if(control.display !== Button.IconOnly){
return false
}
return hovered
}
text:control.text
delay: 1000
}
}
}
contentItem:Loader{
sourceComponent: {
if(display === Button.TextUnderIcon){
@ -137,4 +106,18 @@ Button {
return com_row
}
}
FluTooltip{
id:tool_tip
visible: {
if(control.text === ""){
return false
}
if(control.display !== Button.IconOnly){
return false
}
return hovered
}
text:control.text
delay: 1000
}
}