From ab8ff9f362dbfc4550a8c470463481b26c75fc04 Mon Sep 17 00:00:00 2001 From: Nick Tiskov Date: Sun, 26 Jan 2014 15:05:09 +0400 Subject: [PATCH] Fix missing percent sign in stats dialog --- src/statsdialog.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/statsdialog.cpp b/src/statsdialog.cpp index 7f6d27640..bbaa43b30 100644 --- a/src/statsdialog.cpp +++ b/src/statsdialog.cpp @@ -91,12 +91,12 @@ void StatsDialog::updateUI() { peers += (*iBegin).status().num_peers; ui->labelWriteStarve->setText( ( ss.disk_write_queue > 0 && peers > 0 ) ? - misc::accurateDoubleToString(100. * (qreal)ss.disk_write_queue / (qreal)peers, 2) : + misc::accurateDoubleToString(100. * (qreal)ss.disk_write_queue / (qreal)peers, 2) + "%" : QString("0\%") ); ui->labelReadStarve->setText( ( ss.disk_read_queue > 0 && peers > 0 ) ? - misc::accurateDoubleToString(100. * (qreal)ss.disk_read_queue / (qreal)peers, 2) : + misc::accurateDoubleToString(100. * (qreal)ss.disk_read_queue / (qreal)peers, 2) + "%" : QString("0\%") ); // Disk queues