Skip to content

Commit

Permalink
Merge pull request #1737 from Trial97/fix_ftb_app_import_icon
Browse files Browse the repository at this point in the history
Fixed FTBApp import icon
  • Loading branch information
Trial97 committed Oct 21, 2023
2 parents 7ad48d8 + 80723ee commit f0fd1bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion launcher/ui/pages/modplatform/import_ftb/ImportFTBPage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ void ImportFTBPage::suggestCurrent()
}

dialog->setSuggestedPack(selected.name, new PackInstallTask(selected));
QString editedLogoName = QString("ftb_%1_%2,jpg").arg(selected.name, selected.id);
QString editedLogoName = QString("ftb_%1_%2.jpg").arg(selected.name, QString::number(selected.id));
dialog->setSuggestedIconFromFile(FS::PathCombine(selected.path, "folder.jpg"), editedLogoName);
}

Expand Down

0 comments on commit f0fd1bd

Please sign in to comment.