mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-09 21:22:39 -05:00
rbutil: Fix installing fonts / manual for development builds.
For development builds we provide a download URL, but use the daily build files. Those require the version of the daily build to be set when expanding the URL string. Change-Id: Ie6dcf38f7e86527217edc01ee11a20758a178622
This commit is contained in:
parent
ce70e34476
commit
403cb96f3a
3 changed files with 48 additions and 19 deletions
|
|
@ -97,6 +97,12 @@ void SelectiveInstallWidget::selectedVersionChanged(int index)
|
|||
ui.voiceCombobox->setEnabled(voice);
|
||||
ui.voiceLabel->setEnabled(voice);
|
||||
ui.voiceCheckbox->setToolTip(voice ? "" : tr("Not available for the selected version"));
|
||||
QString fontsurl = PlayerBuildInfo::instance()->value(
|
||||
PlayerBuildInfo::BuildFontUrl, m_buildtype).toString();
|
||||
ui.fontsCheckbox->setEnabled(!fontsurl.isEmpty());
|
||||
QString manualurl = PlayerBuildInfo::instance()->value(
|
||||
PlayerBuildInfo::BuildManualUrl, m_buildtype).toString();
|
||||
ui.manualCheckbox->setEnabled(!manualurl.isEmpty());
|
||||
|
||||
updateVoiceLangs();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue