mirror of
https://github.com/AxioDL/PrimeWorldEditor.git
synced 2025-12-08 21:17:53 +00:00
CEditorApplication: Remove wonky closing parenthesis in package cooking dialog
This just looks out of place (and is a remnant from the translation string changes).
This commit is contained in:
@@ -229,7 +229,7 @@ bool CEditorApplication::CookPackageList(QList<CPackage*> PackageList)
|
||||
if (PackageList.isEmpty())
|
||||
return true;
|
||||
|
||||
CProgressDialog Dialog(tr("Cooking package%1)").arg(PackageList.size() > 1 ? tr("s") : QString{}), false, true, mpWorldEditor);
|
||||
CProgressDialog Dialog(tr("Cooking package%1").arg(PackageList.size() > 1 ? tr("s") : QString{}), false, true, mpWorldEditor);
|
||||
|
||||
QFuture<void> Future = QtConcurrent::run([&]()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user