GUI: max size of 1000 Mb for webcache file was stupid
This commit is contained in:
parent
0ab2796baa
commit
9d18128dbe
1 changed files with 1 additions and 1 deletions
|
@ -150,7 +150,7 @@ ConfBeaglePanelW::ConfBeaglePanelW(QWidget *parent, ConfNull *config)
|
||||||
ConfParamIntW *cp3 =
|
ConfParamIntW *cp3 =
|
||||||
new ConfParamIntW(this, lnk3, tr("Max. size for the web store (MB)"),
|
new ConfParamIntW(this, lnk3, tr("Max. size for the web store (MB)"),
|
||||||
tr("Entries will be recycled once the size is reached"),
|
tr("Entries will be recycled once the size is reached"),
|
||||||
-1, 1000);
|
-1, 1000*1000); // Max 1TB...
|
||||||
cp3->setEnabled(cp1->m_cb->isChecked());
|
cp3->setEnabled(cp1->m_cb->isChecked());
|
||||||
connect(cp1->m_cb, SIGNAL(toggled(bool)), cp3, SLOT(setEnabled(bool)));
|
connect(cp1->m_cb, SIGNAL(toggled(bool)), cp3, SLOT(setEnabled(bool)));
|
||||||
vboxLayout->addWidget(cp3);
|
vboxLayout->addWidget(cp3);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue