aboutsummaryrefslogtreecommitdiff
path: root/launcher/pages/instance/TexturePackPage.h
diff options
context:
space:
mode:
Diffstat (limited to 'launcher/pages/instance/TexturePackPage.h')
-rw-r--r--launcher/pages/instance/TexturePackPage.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/launcher/pages/instance/TexturePackPage.h b/launcher/pages/instance/TexturePackPage.h
deleted file mode 100644
index 3f04997d..00000000
--- a/launcher/pages/instance/TexturePackPage.h
+++ /dev/null
@@ -1,22 +0,0 @@
-#pragma once
-
-#include "ModFolderPage.h"
-#include "ui_ModFolderPage.h"
-
-class TexturePackPage : public ModFolderPage
-{
- Q_OBJECT
-public:
- explicit TexturePackPage(MinecraftInstance *instance, QWidget *parent = 0)
- : ModFolderPage(instance, instance->texturePackList(), "texturepacks", "resourcepacks",
- tr("Texture packs"), "Texture-packs", parent)
- {
- ui->actionView_configs->setVisible(false);
- }
- virtual ~TexturePackPage() {}
-
- virtual bool shouldDisplay() const override
- {
- return m_inst->traits().contains("texturepacks");
- }
-};