From 85a7df7daae54294f230cccf1195d5cea0fa184b Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 14 Nov 2021 15:35:58 +0530 Subject: [PATCH] Show the undo popup after file merging --- src/calibre/gui2/tweak_book/boss.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/calibre/gui2/tweak_book/boss.py b/src/calibre/gui2/tweak_book/boss.py index 4939456953..8e899aa91f 100644 --- a/src/calibre/gui2/tweak_book/boss.py +++ b/src/calibre/gui2/tweak_book/boss.py @@ -1472,6 +1472,7 @@ class Boss(QObject): self.apply_container_update_to_gui() if master in editors: self.show_editor(master) + self.gui.message_popup(_('{} files merged').format(len(names))) @in_thread_job def link_stylesheets_requested(self, names, sheets, remove):