diff options
author | timoreo <timo.oreo34@gmail.com> | 2022-01-24 07:12:19 +0100 |
---|---|---|
committer | timoreo <timo.oreo34@gmail.com> | 2022-01-24 07:12:19 +0100 |
commit | a2d88f6df47c49d29444e8faba6a6e648cbe3a11 (patch) | |
tree | e4c8c36f11860d8861f609b5da0f037744d58027 /launcher/ui/pages/instance | |
parent | 6d22794cf97722e3f7d5507fc16c75bf6fe59bf8 (diff) | |
download | PrismLauncher-a2d88f6df47c49d29444e8faba6a6e648cbe3a11.tar.gz PrismLauncher-a2d88f6df47c49d29444e8faba6a6e648cbe3a11.tar.bz2 PrismLauncher-a2d88f6df47c49d29444e8faba6a6e648cbe3a11.zip |
Fixed spacing
Diffstat (limited to 'launcher/ui/pages/instance')
-rw-r--r-- | launcher/ui/pages/instance/ModFolderPage.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/launcher/ui/pages/instance/ModFolderPage.cpp b/launcher/ui/pages/instance/ModFolderPage.cpp index 1d2194f3..09b199fb 100644 --- a/launcher/ui/pages/instance/ModFolderPage.cpp +++ b/launcher/ui/pages/instance/ModFolderPage.cpp @@ -355,7 +355,7 @@ void ModFolderPage::on_actionInstall_mods_triggered() bool hasFabric = !((MinecraftInstance *)m_inst)->getPackProfile()->getComponentVersion("net.fabricmc.fabric-loader").isEmpty(); bool hasForge = !((MinecraftInstance *)m_inst)->getPackProfile()->getComponentVersion("net.minecraftforge").isEmpty(); if (!hasFabric && !hasForge) { - QMessageBox::critical(this,tr("Error"),tr("Please install a mod loader first !")); + QMessageBox::critical(this,tr("Error"),tr("Please install a mod loader first!")); return; } ModDownloadDialog mdownload(m_mods, this, m_inst); |