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

Combobox and Menu doesn't work in Full Screen QML

    XMLWordPrintable

Details

    Description

      After run program in full screen mode I can't select combobox item or Menu Items.

      The screen is blinking when I select combobox or Menu.
      Pay attention : This bug is only for QML Full screen mode In Windows platform only ! not Linux and mac os.
      I have this problem from version 5.1 to 5.5 not solved yet.

      Code example :

      import QtQuick 2.4
      import QtQuick.Controls 1.3
      import QtQuick.Window 2.2
      import QtQuick.Dialogs 1.2
      
      ApplicationWindow {
      
          title: qsTr("Hello World")
          width: Screen.desktopAvailableWidth
          height: Screen.desktopAvailableHeight
          visible: true
          visibility: "FullScreen"
          menuBar: MenuBar {
              Menu {
                  title: qsTr("&File")
                  MenuItem {
                      text: qsTr("&Open")
                      onTriggered: messageDialog.show(qsTr("Open action triggered"));
                  }
      
                 MenuItem {
                 text: qsTr("E&xit")
                 onTriggered: Qt.quit();
      
                  }
              }
          }
          ComboBox {
      
              anchors.centerIn: parent;
      
              width: 400
      
              model: [ "Banana", "Apple", "Coconut" ]
      
          }
      
      }
      

      Attachments

        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
              kambiz Kambiz
              Votes:
              17 Vote for this issue
              Watchers:
              17 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved:

                Gerrit Reviews

                  There are no open Gerrit changes