mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-17 06:01:33 -06:00
Remove limits of "Disk cache expiry interval" setting
This commit is contained in:
@@ -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", "(?)"))
|
||||||
|
|||||||
Reference in New Issue
Block a user