Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPhilipp Hörist <forenjunkie@chello.at>2017-05-16 19:14:34 +0300
committerPhilipp Hörist <forenjunkie@chello.at>2017-05-16 19:14:34 +0300
commita0a27d9cb259f5e1515e1cf51050dfec68d722dc (patch)
treecd82812d4008ef204550eda9771335b52b174de7 /src
parent8d880e88ddd4de987fbc7c72c14baa4cba79227f (diff)
Use named icons in filetransfer window
Diffstat (limited to 'src')
-rw-r--r--src/filetransfers_window.py18
1 files 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)