diff options
author | jstebbins <[email protected]> | 2014-03-18 20:07:55 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2014-03-18 20:07:55 +0000 |
commit | ea9ec593a50d04a001a75461edcee342dc1913aa (patch) | |
tree | 62a07ca31943366d5dcbe74004888829e452cfd6 /gtk/src/queuehandler.c | |
parent | 0060abd6ff150f90192aba8c243f8763b66be74f (diff) |
LinGui: svg'ify the last of the custom icons
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6121 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'gtk/src/queuehandler.c')
-rw-r--r-- | gtk/src/queuehandler.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/src/queuehandler.c b/gtk/src/queuehandler.c index 11f49b04b..7ae41afee 100644 --- a/gtk/src/queuehandler.c +++ b/gtk/src/queuehandler.c @@ -135,11 +135,11 @@ add_to_queue_list(signal_user_data_t *ud, GValue *settings, GtkTreeIter *piter) // Set the job status icon status = ghb_settings_get_int(settings, "job_status"); - const char *status_icon = "hb-queue-job"; + const char *status_icon; switch (status) { case GHB_QUEUE_PENDING: - status_icon = "hb-queue-job"; + status_icon = "hb-source"; break; case GHB_QUEUE_CANCELED: status_icon = "hb-stop"; @@ -148,7 +148,7 @@ add_to_queue_list(signal_user_data_t *ud, GValue *settings, GtkTreeIter *piter) status_icon = "hb-complete"; break; default: - status_icon = "hb-queue-job"; + status_icon = "hb-source"; break; } // Set the status icon, job description, and delete icon button |