Remove print statement

This commit is contained in:
Charles Haley 2023-09-17 15:56:16 +01:00 committed by Kovid Goyal
parent 671d84037f
commit 71cafdbc2f
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -150,7 +150,6 @@ class EditColumnDelegate(QItemDelegate):
def event(ev, me=None, super_class=None, context_menu_handler=None):
if not me.isEnabled() and ev.type() == QEvent.MouseButtonRelease:
print('here')
if ev.button() == Qt.MouseButton.RightButton:
# let the event finish before the context menu is opened.
QTimer.singleShot(0, partial(context_menu_handler, ev.position().toPoint()))