summaryrefslogtreecommitdiff
path: root/src/torrent.c
diff options
context:
space:
mode:
authorGravatar Alan Fitton <alan@eth0.org.uk>2012-07-15 18:18:21 +0100
committerGravatar Alan Fitton <alan@eth0.org.uk>2012-07-15 18:18:21 +0100
commit9ad29a5bee7d238fa33f8c2163acfbf6e7c541ab (patch)
tree380d26c08a580e5ffcb42cf0c27b0a7a4a8382af /src/torrent.c
parenta2f0da7d7ff4c6ae7db689ff1c6c6bc3fc359b52 (diff)
fix debug mode (used non-existent var in the model set). use the icons for queueing in the state selector in the torrent list icon too.
Diffstat (limited to 'src/torrent.c')
-rw-r--r--src/torrent.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/torrent.c b/src/torrent.c
index 0f2cc5e..e86cda8 100644
--- a/src/torrent.c
+++ b/src/torrent.c
@@ -302,6 +302,10 @@ gchar *torrent_get_status_icon(gint64 rpcv, guint flags)
return g_strdup(GTK_STOCK_GO_UP);
else if (flags & TORRENT_FLAG_CHECKING)
return g_strdup(GTK_STOCK_REFRESH);
+ else if (flags & TORRENT_FLAG_DOWNLOADING_WAIT)
+ return g_strdup(GTK_STOCK_MEDIA_REWIND);
+ else if (flags & TORRENT_FLAG_SEEDING_WAIT)
+ return g_strdup(GTK_STOCK_MEDIA_FORWARD);
else
return g_strdup(GTK_STOCK_DIALOG_QUESTION);
}