summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPablo Barciela <[email protected]>2018-02-09 22:57:43 +0100
committerraveit65 <[email protected]>2018-02-10 10:56:06 +0100
commit12e54c41f48a55cd213d2b004d0c3c2cb0a535c3 (patch)
treecffaeb8ee5d04c5ea2a254311c9d902471c06e72
parent2217a021ca5c5ac918dd6e41c4ef29435b5a6b8e (diff)
downloadpluma-12e54c41f48a55cd213d2b004d0c3c2cb0a535c3.tar.bz2
pluma-12e54c41f48a55cd213d2b004d0c3c2cb0a535c3.tar.xz
Fix warning with external tools plugin
Fixes https://github.com/mate-desktop/pluma/pull/273#issuecomment-364460525
-rwxr-xr-xplugins/externaltools/tools/__init__.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/externaltools/tools/__init__.py b/plugins/externaltools/tools/__init__.py
index 2a51c97c..463c8f58 100755
--- a/plugins/externaltools/tools/__init__.py
+++ b/plugins/externaltools/tools/__init__.py
@@ -212,9 +212,9 @@ class ExternalToolsPlugin(GObject.Object, Peas.Activatable):
manager.ensure_update()
bottom = window.get_bottom_panel()
- bottom.add_item_with_stock_icon(self._output_buffer.panel,
- _("Shell Output"),
- Gtk.STOCK_EXECUTE)
+ bottom.add_item_with_icon(self._output_buffer.panel,
+ _("Shell Output"),
+ Gtk.STOCK_EXECUTE)
def do_deactivate(self):
window = self.object