diff options
| author | Jeff Carr <[email protected]> | 2024-02-20 14:44:12 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-02-20 14:44:12 -0600 |
| commit | 2b0f48985521977a8bf40d4d67eb9a614b843773 (patch) | |
| tree | fe93063af9c27336f3be5b96f161d1f284b5ff6e /repoview.go | |
| parent | b15f8fa80ec5026a6fce163086306052edb62b9b (diff) | |
add scan duration label
Diffstat (limited to 'repoview.go')
| -rw-r--r-- | repoview.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/repoview.go b/repoview.go index 9e1af9f..10d8c2d 100644 --- a/repoview.go +++ b/repoview.go @@ -60,6 +60,9 @@ func makeRepoView() *repoWindow { showncount := r.View.MirrorShownCount() r.topbox.Append(showncount) + duration := r.View.MirrorScanDuration() + r.topbox.Append(duration) + r.View.RegisterHideFunction(hideFunction) return r } |
