Skip to content

Commit 12e54c4

Browse files
sc0wraveit65
authored andcommitted
Fix warning with external tools plugin
Fixes #273 (comment)
1 parent 2217a02 commit 12e54c4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

plugins/externaltools/tools/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -212,9 +212,9 @@ def do_activate(self):
212212
manager.ensure_update()
213213

214214
bottom = window.get_bottom_panel()
215-
bottom.add_item_with_stock_icon(self._output_buffer.panel,
216-
_("Shell Output"),
217-
Gtk.STOCK_EXECUTE)
215+
bottom.add_item_with_icon(self._output_buffer.panel,
216+
_("Shell Output"),
217+
Gtk.STOCK_EXECUTE)
218218

219219
def do_deactivate(self):
220220
window = self.object

0 commit comments

Comments
 (0)