589 ## Context menu handling methods |
589 ## Context menu handling methods |
590 ########################################################################### |
590 ########################################################################### |
591 |
591 |
592 def __showContextMenu(self, coord): |
592 def __showContextMenu(self, coord): |
593 """ |
593 """ |
594 Protected slot to show the context menu of the status list. |
594 Private slot to show the context menu of the status list. |
595 |
595 |
596 @param coord the position of the mouse pointer (QPoint) |
596 @param coord the position of the mouse pointer (QPoint) |
597 """ |
597 """ |
598 self.menu.popup(self.mapToGlobal(coord)) |
598 self.menu.popup(self.mapToGlobal(coord)) |
599 |
599 |