Display TOTP code split in halfs

This commit is contained in:
Weslly 2017-05-03 21:26:08 -03:00
parent 4c9b8c7794
commit d3ed14ebb7
2 changed files with 6 additions and 3 deletions

View file

@ -67,7 +67,7 @@ void TotpDialog::copyToClipboard()
void TotpDialog::updateProgressBar()
{
if (uCounter < 100) {
m_ui->progressBar->setValue(100 - uCounter);
m_ui->progressBar->setValue(static_cast<int>(100 - uCounter));
m_ui->progressBar->update();
uCounter++;
} else {
@ -85,7 +85,10 @@ void TotpDialog::updateSeconds()
void TotpDialog::updateTotp()
{
m_ui->totpLabel->setText(m_entry->totp());
QString totpCode = m_entry->totp();
QString firstHalf = totpCode.left(totpCode.size()/2);
QString secondHalf = totpCode.right(totpCode.size()/2);
m_ui->totpLabel->setText(firstHalf + " " + secondHalf);
}
double TotpDialog::resetCounter()