Polish display confirmation state

This commit is contained in:
Gabriel Brown
2026-08-18 02:55:43 -04:00
parent 2d4b126f14
commit 67674d297e
2 changed files with 7 additions and 5 deletions
@@ -47,12 +47,12 @@ Item {
anchors.left: parent.left
anchors.right: parent.right
anchors.top: pinnedHeader.active ? pinnedHeader.bottom : parent.top
anchors.top: pinnedHeader.implicitHeight > 0 ? pinnedHeader.bottom : parent.top
anchors.bottom: parent.bottom
anchors.topMargin: pinnedHeader.active ? 16 : 0
anchors.topMargin: pinnedHeader.implicitHeight > 0 ? 16 : 0
clip: true
contentWidth: width
contentHeight: layout.implicitHeight + (pinnedHeader.active ? 34 : 64)
contentHeight: layout.implicitHeight + (pinnedHeader.implicitHeight > 0 ? 34 : 64)
boundsBehavior: Flickable.StopAtBounds
Column {
@@ -60,7 +60,7 @@ Item {
width: parent.width - 68
x: 34
y: pinnedHeader.active ? 0 : 30
y: pinnedHeader.implicitHeight > 0 ? 0 : 30
spacing: 16
Text {
+3 -1
View File
@@ -122,7 +122,9 @@ Singleton {
root.pendingVerified = true;
verifyTimer.stop();
root.lastError = "";
} else if (!root.awaitingConfirmation) {
} else if (!root.awaitingConfirmation && (
root.lastError === "Could not read the connected displays."
|| root.lastError === "The display list could not be read.")) {
root.lastError = "";
}
} catch (error) {