From: John Stebbins Date: Mon, 15 Oct 2018 17:03:00 +0000 (-0700) Subject: LinGui: fix queue "Reload" option X-Git-Tag: 1.2.0~117 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=dead9539dccd4c43fba40c07ead4324b14379296;p=handbrake LinGui: fix queue "Reload" option The change of state of the queue job was not getting written to the queue file. So restarting HandBrake would result in the queue job being lost. --- diff --git a/gtk/src/queuehandler.c b/gtk/src/queuehandler.c index 8c39fe44c..fe78fe342 100644 --- a/gtk/src/queuehandler.c +++ b/gtk/src/queuehandler.c @@ -1028,6 +1028,8 @@ queue_reload_clicked_cb(GtkWidget *widget, signal_user_data_t *ud) if (row < 0) return; if (row >= ghb_array_len(ud->queue)) return; ghb_update_status(ud, GHB_QUEUE_PENDING, row); + ghb_save_queue(ud->queue); + ghb_update_pending(ud); } }