- 
    
Bug
 - 
    Resolution: Fixed
 - 
    
  Not Evaluated                     
     - 
    None
 - 
    5.15.2
 - 
    None
 
Steps to reproduce:
- Make sure that the menu is larger than the app window so that the menu must be scrolled .
 - Press the "Test" button. All menu items are accessible.
 - Press the "Test" button again. The item(s) on the top are not accessible anymore because they stay outside of the app window.
 
import QtQuick 2.15 import QtQuick.Window 2.15 import QtQuick.Controls 2.12 ApplicationWindow { id: window width: 640 height: 480 visible: true title: qsTr("Hello World") ToolButton { id: btn text: "Test" anchors.centerIn: parent onClicked: { contextMenu.x = btn.x; contextMenu.y = btn.y; contextMenu.open(); } } Menu { id: contextMenu Repeater { model: 20 MenuItem { text: "Item " + index } } } }