1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-22 20:44:15 +00:00

- Fixed a crash when save dir was an empty string, now defaulting to ~/qBT-dir/

This commit is contained in:
Christophe Dumez 2007-03-11 19:11:20 +00:00
parent e8adc74051
commit eac0254744

View File

@ -504,6 +504,13 @@ float options_imp::getRatio() const{
// Return Save Path
QString options_imp::getSavePath() const{
QString home = QDir::homePath();
if(home[home.length()-1] != QDir::separator()){
home += QDir::separator();
}
if(txt_savePath->text().trimmed().isEmpty()){
txt_savePath->setText(home+"qBT_dir");
}
return txt_savePath->text();
}