diff options
| author | Sefa Eyeoglu <contact@scrumplex.net> | 2023-06-28 08:47:53 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-06-28 08:47:53 +0200 |
| commit | faec21d572549793293bf41127e384811f8a66dc (patch) | |
| tree | e4e2c4b4c9c66cc3bac785c045339fe8d91634f4 /launcher/ui/dialogs | |
| parent | 213f03351f6ee0a066c868f0efa0c6d85913585e (diff) | |
| parent | ed4dce2fb658de726435b06f1d8973b447279f1e (diff) | |
| download | PrismLauncher-faec21d572549793293bf41127e384811f8a66dc.tar.gz PrismLauncher-faec21d572549793293bf41127e384811f8a66dc.tar.bz2 PrismLauncher-faec21d572549793293bf41127e384811f8a66dc.zip | |
Merge pull request #1266 from TheKodeToad/smol-tweaks
Diffstat (limited to 'launcher/ui/dialogs')
| -rw-r--r-- | launcher/ui/dialogs/NewInstanceDialog.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/launcher/ui/dialogs/NewInstanceDialog.cpp b/launcher/ui/dialogs/NewInstanceDialog.cpp index aafaf220..7b9bb944 100644 --- a/launcher/ui/dialogs/NewInstanceDialog.cpp +++ b/launcher/ui/dialogs/NewInstanceDialog.cpp @@ -54,7 +54,7 @@ #include <utility> #include "ui/widgets/PageContainer.h" -#include "ui/pages/modplatform/VanillaPage.h" +#include "ui/pages/modplatform/CustomPage.h" #include "ui/pages/modplatform/atlauncher/AtlPage.h" #include "ui/pages/modplatform/legacy_ftb/Page.h" #include "ui/pages/modplatform/flame/FlamePage.h" @@ -162,7 +162,7 @@ QList<BasePage *> NewInstanceDialog::getPages() importPage = new ImportPage(this); - pages.append(new VanillaPage(this)); + pages.append(new CustomPage(this)); pages.append(importPage); pages.append(new AtlPage(this)); if (APPLICATION->capabilities() & Application::SupportsFlame) |
