// Debug Inspector Window
    Window {
        id: inspectorWindow

        property real displayScale:
            Screen.devicePixelRatio > 0
            ? Screen.devicePixelRatio
            : 1

        x: 700
        y: 200

        width: 420 / displayScale
        height: 160 / displayScale

        minimumWidth: width
        maximumWidth: width
        minimumHeight: height
        maximumHeight: height

        visible: true
        color: "transparent"

        flags: Qt.FramelessWindowHint
            | Qt.BypassWindowManagerHint
            | Qt.WindowStaysOnTopHint
            | Qt.Tool
            | Qt.NoDropShadowWindowHint
            | Qt.WindowDoesNotAcceptFocus

        Item {
            width: 420
            height: 160

            scale: 1 / inspectorWindow.displayScale
            transformOrigin: Item.TopLeft

            Rectangle {
                anchors.fill: parent
                color: "#202020"
                border.color: "#7fd7ff"
                border.width: 1
            }

            Column {
                anchors.fill: parent
                anchors.margins: 12
                spacing: 10

                Text {
                    color: "#7fd7ff"
                    font.pixelSize: 14
                    font.bold: true
                    text: "Deck View Property Test"
                }

                Text {
                    color: "white"
                    font.pixelSize: 12

                    text: "Deck A view.select: "
                        + String(deck1Overlay.deckViewSelectValue)
                }

                Text {
                    color: "white"
                    font.pixelSize: 12

                    text: "Deck B view.select: "
                        + String(deck2Overlay.deckViewSelectValue)
                }
            }
        }
    }    