- 
    Bug 
- 
    Resolution: Duplicate
- 
    P2: Important 
- 
    None
- 
    5.5.0
- 
    Windows
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" ] } }
- duplicates
- 
                    QTBUG-41309 QOpenGLWidget and QOpenGLWindow problems under Fullscreen -         
- Closed
 
-