From 71cafdbc2f14a8ee0dbd0a4fd3f699649a8fc45c Mon Sep 17 00:00:00 2001 From: Charles Haley Date: Sun, 17 Sep 2023 15:56:16 +0100 Subject: [PATCH] Remove print statement --- src/calibre/gui2/dialogs/tag_list_editor.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/calibre/gui2/dialogs/tag_list_editor.py b/src/calibre/gui2/dialogs/tag_list_editor.py index 33d35eaa3c..42a18cf273 100644 --- a/src/calibre/gui2/dialogs/tag_list_editor.py +++ b/src/calibre/gui2/dialogs/tag_list_editor.py @@ -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()))