fix: Change compressing icon place

This commit is contained in:
Petr Mironychev
2025-12-08 10:24:27 +01:00
parent 14e7ea2ec3
commit fd408ba415

View File

@ -106,6 +106,10 @@ Rectangle {
ToolTip.delay: 250 ToolTip.delay: 250
ToolTip.text: qsTr("Switch agent role (different system prompts)") ToolTip.text: qsTr("Switch agent role (different system prompts)")
} }
}
Row {
spacing: 10
QoAButton { QoAButton {
id: toolsButtonId id: toolsButtonId
@ -180,6 +184,7 @@ Rectangle {
} }
} }
Item { Item {
height: firstRow.height height: firstRow.height
width: recentPathId.width width: recentPathId.width
@ -270,11 +275,14 @@ Rectangle {
Row { Row {
id: compressingRow id: compressingRow
visible: root.isCompressing visible: root.isCompressing
spacing: 6 spacing: 6
BusyIndicator { BusyIndicator {
id: compressBusyIndicator id: compressBusyIndicator
anchors.verticalCenter: parent.verticalCenter
running: root.isCompressing running: root.isCompressing
width: 16 width: 16
height: 16 height: 16
@ -282,14 +290,15 @@ Rectangle {
Text { Text {
text: qsTr("Compressing...") text: qsTr("Compressing...")
height: parent.height
color: palette.text color: palette.text
font.pixelSize: 12 font.pixelSize: 12
verticalAlignment: Text.AlignVCenter verticalAlignment: Text.AlignVCenter
height: parent.height
} }
QoAButton { QoAButton {
id: cancelCompressButtonId id: cancelCompressButtonId
text: qsTr("Cancel") text: qsTr("Cancel")
ToolTip.visible: hovered ToolTip.visible: hovered