mirror of
https://github.com/Palm1r/QodeAssist.git
synced 2025-12-11 20:02:50 -05:00
fix: Change compressing icon place
This commit is contained in:
@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user