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 /gtk/src/hb-backend.h | |
parent | a8b2607e4bb59445f76d6b3d1733595bb856070c (diff) |
LinGui: add queue statistics
and tweak the layout per BradleyS suggestions
Diffstat (limited to 'gtk/src/hb-backend.h')
-rw-r--r-- | gtk/src/hb-backend.h | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/gtk/src/hb-backend.h b/gtk/src/hb-backend.h index 592a759b6..4bcd41a59 100644 --- a/gtk/src/hb-backend.h +++ b/gtk/src/hb-backend.h @@ -47,17 +47,19 @@ typedef struct gint preview_cur; // WORKING - gint unique_id; - gint pass_id; - gint pass; - gint pass_count; + gint unique_id; + gint pass_id; + gint pass; + gint pass_count; gdouble progress; gdouble rate_cur; gdouble rate_avg; - gint hours; - gint minutes; - gint seconds; - gint error; + gint64 eta_seconds; + gint hours; + gint minutes; + gint seconds; + gint64 paused; + gint error; } ghb_instance_status_t; typedef struct |