🐛 Fix completed export text not shown

This commit is contained in:
Alejandro Alonso 2022-03-25 12:49:05 +01:00 committed by Andrey Antukh
parent 1db9b04bfd
commit 5817b5fe19
3 changed files with 11 additions and 1 deletions

View file

@ -176,6 +176,7 @@
progress (:progress state)
exports (:exports state)
total (count exports)
complete? (= progress total)
circ (* 2 Math/PI 12)
pct (- circ (* circ (/ progress total)))
@ -188,6 +189,7 @@
(not healthy?) clr/warning)
title (cond
error? (tr "workspace.options.exporting-object-error")
complete? (tr "workspace.options.exporting-complete")
healthy? (tr "workspace.options.exporting-object")
(not healthy?) (tr "workspace.options.exporting-object-slow"))