diff options
Diffstat (limited to 'logic/LegacyInstance.cpp')
-rw-r--r-- | logic/LegacyInstance.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/logic/LegacyInstance.cpp b/logic/LegacyInstance.cpp index 58a3c321..b646bd7b 100644 --- a/logic/LegacyInstance.cpp +++ b/logic/LegacyInstance.cpp @@ -33,6 +33,7 @@ #include "gui/pages/LegacyJarModPage.h" #include <gui/pages/TexturePackPage.h> #include <gui/pages/InstanceSettingsPage.h> +#include <gui/pages/NotesPage.h> LegacyInstance::LegacyInstance(const QString &rootDir, SettingsObject *settings, QObject *parent) @@ -55,6 +56,7 @@ QList<BasePage *> LegacyInstance::getPages() values.append(new ModFolderPage(coreModList(), "coremods", "plugin-green", tr("Core mods"), "Core-mods")); values.append(new TexturePackPage(this)); + values.append(new NotesPage(this)); values.append(new InstanceSettingsPage(&settings())); return values; } |