From 0126be0ca4944ce8036b913e7d821e58875b6d60 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 4 May 2023 17:04:35 +0530 Subject: [PATCH] ... --- src/calibre/gui2/toc/main.py | 2 +- src/calibre/gui2/tweak_book/toc.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/calibre/gui2/toc/main.py b/src/calibre/gui2/toc/main.py index 9f422c9365..476ea6512c 100644 --- a/src/calibre/gui2/toc/main.py +++ b/src/calibre/gui2/toc/main.py @@ -1070,7 +1070,7 @@ class TOCEditor(QDialog): # {{{ def workaround_macos_mouse_with_webview_bug(self): # macOS is weird: https://bugs.launchpad.net/calibre/+bug/2004639 # needed as of Qt 6.4.2 - d = info_dialog(self, _('Loading...'), _('Loading view, please wait...'), show_copy_button=False) + d = info_dialog(self, _('Loading...'), _('Loading table of contents view, please wait...'), show_copy_button=False) QTimer.singleShot(0, d.reject) d.exec() diff --git a/src/calibre/gui2/tweak_book/toc.py b/src/calibre/gui2/tweak_book/toc.py index 5f085f15dd..19097a8e29 100644 --- a/src/calibre/gui2/tweak_book/toc.py +++ b/src/calibre/gui2/tweak_book/toc.py @@ -68,7 +68,7 @@ class TOCEditor(QDialog): def workaround_macos_mouse_with_webview_bug(self): # macOS is weird: https://bugs.launchpad.net/calibre/+bug/2004639 # needed as of Qt 6.4.2 - d = info_dialog(self, _('Loading...'), _('Loading view, please wait...'), show_copy_button=False) + d = info_dialog(self, _('Loading...'), _('Loading table of contents view, please wait...'), show_copy_button=False) QTimer.singleShot(0, d.reject) d.exec()