This commit is contained in:
朱子楚\zhuzi 2023-05-17 21:21:23 +08:00
parent 4b2cbb542e
commit 5539c59233

View File

@ -12,11 +12,6 @@ FluWindow {
property bool appBarVisible: true
default property alias content: container.data
onFixSizeChanged: {
framless_helper.setWindowFixedSize(fixSize)
title_bar.maximizeButton.visible = !fixSize
}
FluAppBar {
id: title_bar
title: window.title
@ -47,6 +42,8 @@ FluWindow {
setHitTestVisible(title_bar.minimizeButton())
setHitTestVisible(title_bar.maximizeButton())
setHitTestVisible(title_bar.closeButton())
framless_helper.setWindowFixedSize(fixSize)
title_bar.maximizeButton.visible = !fixSize
window.visible = true
}
}