From 55a3c77f1802ed71c8850bf411f981a9a2a35586 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 19 Nov 2013 11:21:37 +0530 Subject: [PATCH] Separate the sync toggles from the other buttons --- src/calibre/gui2/tweak_book/preview.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/calibre/gui2/tweak_book/preview.py b/src/calibre/gui2/tweak_book/preview.py index 2e3fc92635..244a4217b8 100644 --- a/src/calibre/gui2/tweak_book/preview.py +++ b/src/calibre/gui2/tweak_book/preview.py @@ -423,6 +423,8 @@ class Preview(QWidget): self.sync_toggled(ac.isChecked()) self.bar.addAction(ac) + self.bar.addSeparator() + ac = actions['reload-preview'] ac.triggered.connect(self.refresh) self.bar.addAction(ac)