Mercurial > hg > svgui
comparison view/Pane.cpp @ 1369:a476c2a015e8 waverevision
Use a distinguishable text for this state
author | Chris Cannam |
---|---|
date | Thu, 01 Nov 2018 15:11:21 +0000 |
parents | bbeffb29bf09 |
children |
comparison
equal
deleted
inserted
replaced
1367:f5566f7271fe | 1369:a476c2a015e8 |
---|---|
800 } else if (!reference) { | 800 } else if (!reference) { |
801 text = tr("Unaligned"); | 801 text = tr("Unaligned"); |
802 } else { | 802 } else { |
803 completion = model->getAlignmentCompletion(); | 803 completion = model->getAlignmentCompletion(); |
804 if (completion == 0) { | 804 if (completion == 0) { |
805 text = tr("Unaligned"); | 805 text = tr("Waiting to Align"); |
806 } else if (completion < 100) { | 806 } else if (completion < 100) { |
807 text = tr("Aligning: %1%").arg(completion); | 807 text = tr("Aligning: %1%").arg(completion); |
808 } else { | 808 } else { |
809 text = tr("Aligned"); | 809 text = tr("Aligned"); |
810 } | 810 } |