diff options
author | Pablo Barciela <[email protected]> | 2018-02-09 22:57:43 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2018-02-10 10:56:06 +0100 |
commit | 12e54c41f48a55cd213d2b004d0c3c2cb0a535c3 (patch) | |
tree | cffaeb8ee5d04c5ea2a254311c9d902471c06e72 | |
parent | 2217a021ca5c5ac918dd6e41c4ef29435b5a6b8e (diff) | |
download | pluma-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-x | plugins/externaltools/tools/__init__.py | 6 |
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 |