Browse Source

Set piece size to (max) 4Mb instead of empty string when created torrent

is very large.
adaptive-webui-19844
Ivan Sorokin 10 years ago
parent
commit
376df3218d
  1. 2
      src/torrentcreator/torrentcreatordlg.cpp

2
src/torrentcreator/torrentcreatordlg.cpp

@ -238,7 +238,7 @@ void TorrentCreatorDlg::updateOptimalPieceSize()
break; break;
} }
++i; ++i;
}while(i<m_piece_sizes.size()); }while(i<(m_piece_sizes.size()-1));
comboPieceSize->setCurrentIndex(i); comboPieceSize->setCurrentIndex(i);
} }

Loading…
Cancel
Save