diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-07-01 00:36:50 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-07-01 00:36:50 +0100 |
| commit | f2577fdda97dfc31177cc141f03dbcda970d9bc4 (patch) | |
| tree | 5c2a047d70633b6208394d5d726568b3f38f71b6 /src/lib | |
| parent | e018270ed19d893fdc339052b1b120988d0e9a7e (diff) | |
Fix progress reporting when repeating frames.l
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/writer.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/writer.cc b/src/lib/writer.cc index e911c3720..ff6e4f63c 100644 --- a/src/lib/writer.cc +++ b/src/lib/writer.cc @@ -404,7 +404,7 @@ try total *= 2; } if (total) { - job->set_progress (float (_full_written + _fake_written) / total); + job->set_progress (float (_full_written + _fake_written + _repeat_written) / total); } } |
