diff --git a/src/calibre/gui2/toc/main.py b/src/calibre/gui2/toc/main.py index 4e677bf988..dd86c7a89b 100644 --- a/src/calibre/gui2/toc/main.py +++ b/src/calibre/gui2/toc/main.py @@ -469,9 +469,10 @@ class TreeWidget(QTreeWidget): # {{{ def check_multi_selection(self): if len(self.selectedItems()) > 1: - return info_dialog(self, _('Multiple items selected'), _( + info_dialog(self, _('Multiple items selected'), _( 'You are trying to move multiple items at once, this is not supported. Instead use' ' Drag and Drop to move multiple items'), show=True) + return False return True def move_left(self):