Add 16 KiB, 8 MiB and 16 MiB piece sizes in Torrent Creator

This commit is contained in:
ngosang
2015-07-04 01:53:19 +02:00
parent 54227c20ff
commit 34f89d3174
2 changed files with 17 additions and 2 deletions

View File

@@ -59,7 +59,7 @@ TorrentCreatorDlg::TorrentCreatorDlg(QWidget *parent): QDialog(parent), creatorT
showProgressBar(false);
loadTrackerList();
// Piece sizes
m_piece_sizes << 32 << 64 << 128 << 256 << 512 << 1024 << 2048 << 4096;
m_piece_sizes << 16 << 32 << 64 << 128 << 256 << 512 << 1024 << 2048 << 4096 << 8192 << 16384;
loadSettings();
show();
}