mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-09 21:25:19 -05:00
Remove installation note and checkbox disabling about the current build always being downloaded -- since cache improvement this uses the cache too.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19857 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
04b7cefd63
commit
29565c40f7
2 changed files with 1 additions and 14 deletions
|
|
@ -27,7 +27,6 @@ Install::Install(RbSettings *sett,QWidget *parent) : QDialog(parent)
|
|||
settings = sett;
|
||||
ui.setupUi(this);
|
||||
|
||||
connect(ui.radioCurrent, SIGNAL(toggled(bool)), this, SLOT(setCached(bool)));
|
||||
connect(ui.radioStable, SIGNAL(toggled(bool)), this, SLOT(setDetailsStable(bool)));
|
||||
connect(ui.radioCurrent, SIGNAL(toggled(bool)), this, SLOT(setDetailsCurrent(bool)));
|
||||
connect(ui.radioArchived, SIGNAL(toggled(bool)), this, SLOT(setDetailsArchived(bool)));
|
||||
|
|
@ -88,12 +87,6 @@ void Install::backupCheckboxChanged(int state)
|
|||
}
|
||||
|
||||
|
||||
void Install::setCached(bool cache)
|
||||
{
|
||||
ui.checkBoxCache->setEnabled(!cache);
|
||||
}
|
||||
|
||||
|
||||
void Install::accept()
|
||||
{
|
||||
logger = new ProgressLoggerGui(this);
|
||||
|
|
@ -240,12 +233,7 @@ void Install::setDetailsCurrent(bool show)
|
|||
"a change is made. Latest version is r%1 (%2).")
|
||||
.arg(version.value("bleed_rev"), version.value("bleed_date")));
|
||||
if(version.value("rel_rev").isEmpty())
|
||||
ui.labelNote->setText(tr("<b>Note:</b> This option will always "
|
||||
"download a fresh copy. "
|
||||
"<b>This is the recommended version.</b>"));
|
||||
else
|
||||
ui.labelNote->setText(tr("<b>Note:</b> This option will always "
|
||||
"download a fresh copy."));
|
||||
ui.labelNote->setText(tr("<b>This is the recommended version.</b>"));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue