Ticket #7742: infolines.patch

File infolines.patch, 690 bytes (added by micahgalizia@…, 14 years ago)

Display error screen if there are fewer than six info textareas.

  • mythmusic/databasebox.cpp

     
    9090            m_lines.push_back(line);
    9191    }
    9292
    93     if (m_lines.size() < 3)
     93    if (m_lines.size() < 6)
    9494    {
    9595        DialogBox *dlg = new DialogBox(
    9696            gContext->GetMainWindow(),
    97             tr("The theme you are using does not contain any info "
     97            tr("The theme you are using does not contain enough info "
    9898               "lines in the music element. Please contact the theme "
    9999               "creator and ask if they could please update it."));
    100100