From 0a6d56f6fd7aa336a53fa5db056f38c3bdf2ec5d Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 15 Dec 2013 21:23:29 +0530 Subject: [PATCH] Edit book: Fix book not being marked as modified after editing the ToC --- 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 951cbb3ded..e108659e1c 100644 --- a/src/calibre/gui2/tweak_book/boss.py +++ b/src/calibre/gui2/tweak_book/boss.py @@ -296,6 +296,7 @@ class Boss(QObject): self.rewind_savepoint() return with BusyCursor(): + self.set_modified() self.update_editors_from_container() self.gui.toc_view.update_if_visible()