From 936be3de20e77f40d1c3ff31620fd7227097f8c3 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 26 May 2017 22:44:46 +0530 Subject: [PATCH] Fix #1692329 [Plugin left in toolbar after it has been deleted](https://bugs.launchpad.net/calibre/+bug/1692329) --- src/calibre/gui2/preferences/plugins.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/calibre/gui2/preferences/plugins.py b/src/calibre/gui2/preferences/plugins.py index 8f206f68f4..897de11d79 100644 --- a/src/calibre/gui2/preferences/plugins.py +++ b/src/calibre/gui2/preferences/plugins.py @@ -377,7 +377,8 @@ class ConfigWidget(ConfigWidgetBase, Ui_Form): 'confirm_plugin_removal_msg', parent=self): return - msg = _('Plugin {0} successfully removed').format(plugin.name) + msg = _('Plugin {0} successfully removed. You will have' + ' to restart calibre for it to be completely removed.').format(plugin.name) if remove_plugin(plugin): self._plugin_model.beginResetModel() self._plugin_model.populate()