Skip to content

Commit

Permalink
More summary page fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
kz26 committed Dec 10, 2013
1 parent baaa1fa commit 7cd8216
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# 1.1.2 - 2913-12-10
* Fix layout on summary page
* Fixes to summary page

# 1.1.1 - 2013-12-10
* Also add child files in batch mode
Expand Down
2 changes: 1 addition & 1 deletion summarypage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ void SummaryPage::initializePage() {
ui->summaryTextBox->append(QString("<b>Piece size:</b> Auto\n"));
}
else {
pieceSize = 1024 * (2 << (pieceSizeIndex + 2));
pieceSize = 2 << (pieceSizeIndex + 2);
ui->summaryTextBox->append(QString("<b>Piece size:</b> %1 KB\n").arg(pieceSize));
}
ui->summaryTextBox->append(QString("<b>Include file modification times:</b> %1\n").arg(field("includeFileModTimes").toString()));
Expand Down

0 comments on commit 7cd8216

Please sign in to comment.