1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-10-06 14:53:21 +02:00

Allow tile cache sizes up to 2GB

This commit is contained in:
Martin Tůma 2022-06-02 19:14:34 +02:00
parent e6e41c846c
commit feb1650ed0

View File

@ -717,7 +717,7 @@ QWidget *OptionsDialog::createSystemPage()
_pixmapCache = new QSpinBox();
_pixmapCache->setMinimum(16);
_pixmapCache->setMaximum(1024);
_pixmapCache->setMaximum(2048);
_pixmapCache->setSuffix(UNIT_SPACE + tr("MB"));
_pixmapCache->setValue(_options.pixmapCache);