From a0a27d9cb259f5e1515e1cf51050dfec68d722dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20H=C3=B6rist?= Date: Tue, 16 May 2017 18:14:34 +0200 Subject: [PATCH] Use named icons in filetransfer window --- src/filetransfers_window.py | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/filetransfers_window.py b/src/filetransfers_window.py index 915c6c42e..456874d09 100644 --- a/src/filetransfers_window.py +++ b/src/filetransfers_window.py @@ -126,15 +126,15 @@ class FileTransfersWindow: self.images = {} self.icons = { - 'upload': Gtk.STOCK_GO_UP, - 'download': Gtk.STOCK_GO_DOWN, - 'stop': Gtk.STOCK_STOP, - 'waiting': Gtk.STOCK_REFRESH, - 'pause': Gtk.STOCK_MEDIA_PAUSE, - 'continue': Gtk.STOCK_MEDIA_PLAY, - 'ok': Gtk.STOCK_APPLY, - 'computing': Gtk.STOCK_EXECUTE, - 'hash_error': Gtk.STOCK_STOP, + 'upload': 'go-up', + 'download': 'go-down', + 'stop': 'window-close', + 'waiting': 'view-refresh', + 'pause': 'media-playback-pause', + 'continue': 'media-playback-start', + 'ok': 'emblem-ok-symbolic', + 'computing': 'system-run', + 'hash_error': 'network-error-symbolic', } self.tree.get_selection().set_mode(Gtk.SelectionMode.SINGLE)