Skip to content

Commit

Permalink
Fix Theme Chooser theme downloading on remote frontends.
Browse files Browse the repository at this point in the history
Backports part of caea1c7.
  • Loading branch information
cpinkham committed Aug 12, 2011
1 parent 45ddada commit c212ca8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion mythtv/programs/mythfrontend/themechooser.cpp
Expand Up @@ -651,15 +651,17 @@ void ThemeChooser::customEvent(QEvent *e)
if (file.exists())
{
remoteFileIsLocal = true;
m_downloadFile = localFile;
}
else
{
GetMythDownloadManager()->queueDownload(
m_downloadFile, localFile, this);
OpenBusyPopup(tr("Copying %1 Theme Package")
.arg(m_downloadTheme->GetName()));
m_downloadFile = localFile;
return;
}
m_downloadFile = localFile;
}
else
{
Expand Down

0 comments on commit c212ca8

Please sign in to comment.