From 89b907546fdfd9ed8c8b32fe34142636a549fb83 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 5 Apr 2026 10:14:13 +0530 Subject: [PATCH] clone action should also copy status tip --- src/calibre/gui2/bars.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/calibre/gui2/bars.py b/src/calibre/gui2/bars.py index 829f019955..8ee871ab51 100644 --- a/src/calibre/gui2/bars.py +++ b/src/calibre/gui2/bars.py @@ -394,6 +394,7 @@ if ismacos: self.setCheckable(self.clone.isCheckable()) self.setChecked(self.clone.isChecked()) self.setIcon(self.clone.icon()) + self.setStatusTip(self.clone.statusTip()) if self.clone_shortcuts: sc = self.clone.shortcut() if sc and not sc.isEmpty():