diff options
author | Damiano Galassi <[email protected]> | 2016-05-24 10:46:30 +0200 |
---|---|---|
committer | Damiano Galassi <[email protected]> | 2016-05-24 10:46:30 +0200 |
commit | c0393485103ded582169ce383f411450ab8e016d (patch) | |
tree | 4c6d932edf4a86a7952b0bf3d171c40a56f82b29 /macosx/HBCore.m | |
parent | 879a512e2b58b73171b8ee542470c722f0b60647 (diff) |
MacGui: show the encode progress when paused too.
Diffstat (limited to 'macosx/HBCore.m')
-rw-r--r-- | macosx/HBCore.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/macosx/HBCore.m b/macosx/HBCore.m index 305774d44..88b062bf3 100644 --- a/macosx/HBCore.m +++ b/macosx/HBCore.m @@ -563,7 +563,7 @@ static void hb_error_handler(const char *errmsg) HBProgress progress = {0, 0, 0, 0}; progress.percent = [self.stateFormatter stateToPercentComplete:state]; - if (state.state == HB_STATE_WORKING) + if (state.state == HB_STATE_WORKING || state.state == HB_STATE_PAUSED) { progress.hours = state.param.working.hours; progress.minutes = state.param.working.minutes; |