'Cannot disable menu from popping up when right click scroll area

I have tried PreventContextMenu as well as NoContextMenu, but the menu still pops up when I right click the scroll area. Here is a screenshot of my problem:

Right-click popup menu

The menu items are basically "Scroll to here","Left edge", etc.



Solution 1:[1]

You have to set it on the scrollbar, not the scrollarea:

scroll_area.horizontalScrollBar().setContextMenuPolicy(QtCore.Qt.NoContextMenu)

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 eyllanesc