Hey,
i have this issue:

i added contexmenu to qtreewidget
Qt Code:
  1. tree.setContextMenuPolicy(ContextMenuPolicy.CustomContextMenu);
  2. tree.customContextMenuRequested.connect(this, "treeMenu(QPoint)");
  3.  
  4. ....
  5.  
  6. private void treeMenu(QPoint point)
  7. {
  8. QMenu menu = new QMenu(tree);
  9. ... add some actions ...
  10. menu.exec(ui.tree.mapToGlobal(point));
  11. }
To copy to clipboard, switch view to plain text mode 

it works just fine but ..
if i right click on it it fires up 3 times,
so multiple times is the signal emitted.
How to deal with it and filter the signals or block ?

Greets,
Kubas