This commit is contained in:
朱子楚 2023-05-17 22:19:46 +08:00
parent 155960c15b
commit bd422f96cf

View File

@ -55,7 +55,6 @@ Rectangle{
} }
RowLayout{ RowLayout{
anchors.right: parent.right anchors.right: parent.right
visible: !isMac
height: root.height height: root.height
spacing: 0 spacing: 0
RowLayout{ RowLayout{
@ -87,6 +86,7 @@ Rectangle{
iconSize: 11 iconSize: 11
text:minimizeText text:minimizeText
radius: 0 radius: 0
visible: !isMac
iconColor: root.textColor iconColor: root.textColor
color: hovered ? minimizeHoverColor : minimizeNormalColor color: hovered ? minimizeHoverColor : minimizeNormalColor
onClicked: { onClicked: {
@ -100,7 +100,7 @@ Rectangle{
iconSource : d.isRestore ? FluentIcons.ChromeRestore : FluentIcons.ChromeMaximize iconSource : d.isRestore ? FluentIcons.ChromeRestore : FluentIcons.ChromeMaximize
color: hovered ? maximizeHoverColor : maximizeNormalColor color: hovered ? maximizeHoverColor : maximizeNormalColor
Layout.alignment: Qt.AlignVCenter Layout.alignment: Qt.AlignVCenter
visible: d.resizable visible: d.resizable && !isMac
radius: 0 radius: 0
iconColor: root.textColor iconColor: root.textColor
text:d.isRestore?restoreText:maximizeText text:d.isRestore?restoreText:maximizeText
@ -119,6 +119,7 @@ Rectangle{
text:closeText text:closeText
width: 40 width: 40
height: 30 height: 30
visible: !isMac
radius: 0 radius: 0
iconSize: 10 iconSize: 10
iconColor: hovered ? Qt.rgba(1,1,1,1) : root.textColor iconColor: hovered ? Qt.rgba(1,1,1,1) : root.textColor