|
|
@ -353,8 +353,8 @@ void AdvancedSettings::loadAdvancedSettings() |
|
|
|
addRow(DISK_CACHE, (tr("Disk cache") + ' ' + makeLink("https://www.libtorrent.org/reference-Settings.html#cache_size", "(?)")) |
|
|
|
addRow(DISK_CACHE, (tr("Disk cache") + ' ' + makeLink("https://www.libtorrent.org/reference-Settings.html#cache_size", "(?)")) |
|
|
|
, &spinBoxCache); |
|
|
|
, &spinBoxCache); |
|
|
|
// Disk cache expiry
|
|
|
|
// Disk cache expiry
|
|
|
|
spinBoxCacheTTL.setMinimum(15); |
|
|
|
spinBoxCacheTTL.setMinimum(1); |
|
|
|
spinBoxCacheTTL.setMaximum(600); |
|
|
|
spinBoxCacheTTL.setMaximum(std::numeric_limits<int>::max()); |
|
|
|
spinBoxCacheTTL.setValue(session->diskCacheTTL()); |
|
|
|
spinBoxCacheTTL.setValue(session->diskCacheTTL()); |
|
|
|
spinBoxCacheTTL.setSuffix(tr(" s", " seconds")); |
|
|
|
spinBoxCacheTTL.setSuffix(tr(" s", " seconds")); |
|
|
|
addRow(DISK_CACHE_TTL, (tr("Disk cache expiry interval") + ' ' + makeLink("https://www.libtorrent.org/reference-Settings.html#cache_expiry", "(?)")) |
|
|
|
addRow(DISK_CACHE_TTL, (tr("Disk cache expiry interval") + ' ' + makeLink("https://www.libtorrent.org/reference-Settings.html#cache_expiry", "(?)")) |
|
|
|