From 12e54c41f48a55cd213d2b004d0c3c2cb0a535c3 Mon Sep 17 00:00:00 2001 From: Pablo Barciela Date: Fri, 9 Feb 2018 22:57:43 +0100 Subject: Fix warning with external tools plugin Fixes https://github.com/mate-desktop/pluma/pull/273#issuecomment-364460525 --- plugins/externaltools/tools/__init__.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'plugins/externaltools/tools/__init__.py') 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 -- cgit v1.2.1