diff options
author | John Stebbins <[email protected]> | 2019-06-25 15:55:59 -0700 |
---|---|---|
committer | John Stebbins <[email protected]> | 2019-06-25 16:06:10 -0700 |
commit | 25e1f04a63dc07e944522a10e9f9733e027cb9f5 (patch) | |
tree | 8e4eb686468ce9e86b6a8a704d4fb135310bd213 /libhb/muxcommon.c | |
parent | a8b2607e4bb59445f76d6b3d1733595bb856070c (diff) |
LinGui: add queue statistics
and tweak the layout per BradleyS suggestions
Diffstat (limited to 'libhb/muxcommon.c')
-rw-r--r-- | libhb/muxcommon.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libhb/muxcommon.c b/libhb/muxcommon.c index 93b144a23..de62c1241 100644 --- a/libhb/muxcommon.c +++ b/libhb/muxcommon.c @@ -505,9 +505,10 @@ static void muxClose( hb_work_object_t * muxer ) { /* Update the UI */ hb_state_t state; + hb_get_state2(job->h, &state); state.state = HB_STATE_MUXING; state.param.muxing.progress = 0; - hb_set_state( job->h, &state ); + hb_set_state(job->h, &state); } if( mux->m ) |