Uploaded image for project: 'Qt'
  1. Qt
  2. QTBUG-135362

Issue using popupType property on linux

    XMLWordPrintable

Details

    • Bug
    • Resolution: Unresolved
    • P2: Important
    • None
    • 6.8.2
    • Quick: Controls 2
    • None
    • Linux/X11

    Description

      When using the popupType: Popup.Window or popupType: Popup.Native property with Popup on X11, the first time opening a popup the frame buffer is shown for a split second as shown in the attached video and screenshots. Any consecutive opening will work fine. What you can see in the screenshot is the top left corner of my desktop without opened applications.

      The following demo is a bit over the top, but I was testing close policy issues with the new property as well.

      import QtQuick
      import QtQuick.Controls
      
      Window {
          width: 320
          height: 240
          visible: true
          title: qsTr("Hello World")
      
          Column {
              spacing: 8
              anchors.centerIn: parent
      
              Button {
                  anchors.horizontalCenter: parent.horizontalCenter
                  text: qsTr("Open Popup Item")
                  onClicked: popupItem.open()
              }
              Button {
                  anchors.horizontalCenter: parent.horizontalCenter
                  text: qsTr("Open Popup Window")
                  onClicked: popupWindow.open()
              }
              Button {
                  anchors.horizontalCenter: parent.horizontalCenter
                  text: qsTr("Open Popup Native")
                  onClicked: popupNative.open()
              }
          }
      
          component MyPopup: Popup {
              id: basePopup
              x: 0
              y: 0
              width: 200
              height: 300
              closePolicy: Popup.CloseOnEscape | Popup.CloseOnPressOutside //Popup.NoAutoClose
      
              Button {
                  anchors.horizontalCenter: parent.horizontalCenter
                  text: qsTr("Open nested Popup")
                  onClicked: nestedPopup.open()
              }
      
              background: Rectangle {
                  color: "purple"
                  border {
                      color: "green"
                      width: 8
                  }
              }
      
              Popup {
                  id: nestedPopup
                  x: 20
                  y: 20
                  width: 200
                  height: 300
                  focus: true
                  closePolicy: basePopup.closePolicy
                  popupType: basePopup.popupType
      
                  background: Rectangle {
                      color: "red"
                      border {
                          color: "blue"
                          width: 8
                      }
                  }
              }
          }
      
          MyPopup {
              id: popupItem
              popupType: Popup.Item
          }
      
          MyPopup {
              id: popupWindow
              popupType: Popup.Window
          }
      
          MyPopup {
              id: popupNative
              popupType: Popup.Native
          }
      }
      

      Attachments

        1. 2025-03-31 11-56-07.mp4
          1.38 MB
          Henning Gründl
        2. vlcsnap-2025-03-31-11h57m38s963.png
          223 kB
          Henning Gründl
        3. vlcsnap-2025-03-31-11h58m10s144.png
          229 kB
          Henning Gründl

        Issue Links

          No reviews matched the request. Check your Options in the drop-down menu of this sections header.

          Activity

            People

              qt.team.quick.subscriptions Qt Quick and Widgets Team
              henning Henning Gründl
              Votes:
              0 Vote for this issue
              Watchers:
              3 Start watching this issue

              Dates

                Created:
                Updated:

                Gerrit Reviews

                  There are no open Gerrit changes