update x value of topbutton when resize window

This commit is contained in:
ronoaer 2023-10-10 08:43:56 +08:00
parent 45dc302de4
commit da02f49850
2 changed files with 10 additions and 1 deletions

View file

@ -136,6 +136,11 @@ PageType {
ServersModel.currentlyProcessedIndex = ServersModel.defaultIndex
tabBarStackView.push(pagePath, { "objectName" : pagePath })
}
onWidthChanged: {
topCloseButton.x = tabBarStackView.x + tabBarStackView.width -
topCloseButton.buttonWidth - topCloseButton.rightPadding
}
}
TabBar {
@ -231,7 +236,7 @@ PageType {
TopCloseButtonType {
id: topCloseButton
x: tabBarStackView.width - topCloseButton.width
x: tabBarStackView.width - topCloseButton.buttonWidth - topCloseButton.rightPadding
z: 1
}