diff options
author | jstebbins <[email protected]> | 2014-05-15 10:45:36 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2014-05-15 10:45:36 +0000 |
commit | 9ac66c0b787847fae383671ec1533e099cde7999 (patch) | |
tree | bde2e804191934ce9c0f2f2550d00ae06c386970 /gtk/src/callbacks.c | |
parent | cc9dfa7781fafba8b9e24ce943946d6784597c74 (diff) |
LinGui: add "Reload" and "Reload All" toolbar buttons to queue window
This allow reseting queue entries to the pending status so that they
make be re-encoded.
I'm not sure when a user might use these, but I have had many occasions where
I wish I had this capability during debugging and testing.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6192 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'gtk/src/callbacks.c')
-rw-r--r-- | gtk/src/callbacks.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gtk/src/callbacks.c b/gtk/src/callbacks.c index 6a90f4903..46200f0a2 100644 --- a/gtk/src/callbacks.c +++ b/gtk/src/callbacks.c @@ -3281,9 +3281,10 @@ ghb_backend_events(signal_user_data_t *ud) qstatus = GHB_QUEUE_CANCELED; status_icon = "hb-stop"; break; + case GHB_ERROR_FAIL: default: gtk_label_set_text (work_status, _("Encode Failed.")); - qstatus = GHB_QUEUE_CANCELED; + qstatus = GHB_QUEUE_FAIL; status_icon = "hb-stop"; } if (js != NULL) |