aboutsummaryrefslogtreecommitdiff
path: root/launcher/ui/pages
diff options
context:
space:
mode:
authortimoreo <timo.oreo34@gmail.com>2022-01-24 07:12:19 +0100
committertimoreo <timo.oreo34@gmail.com>2022-01-24 07:12:19 +0100
commita2d88f6df47c49d29444e8faba6a6e648cbe3a11 (patch)
treee4c8c36f11860d8861f609b5da0f037744d58027 /launcher/ui/pages
parent6d22794cf97722e3f7d5507fc16c75bf6fe59bf8 (diff)
downloadPrismLauncher-a2d88f6df47c49d29444e8faba6a6e648cbe3a11.tar.gz
PrismLauncher-a2d88f6df47c49d29444e8faba6a6e648cbe3a11.tar.bz2
PrismLauncher-a2d88f6df47c49d29444e8faba6a6e648cbe3a11.zip
Fixed spacing
Diffstat (limited to 'launcher/ui/pages')
-rw-r--r--launcher/ui/pages/instance/ModFolderPage.cpp2
-rw-r--r--launcher/ui/pages/modplatform/flame/FlameModPage.cpp4
2 files changed, 3 insertions, 3 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);
diff --git a/launcher/ui/pages/modplatform/flame/FlameModPage.cpp b/launcher/ui/pages/modplatform/flame/FlameModPage.cpp
index 9978ad7b..80f3de19 100644
--- a/launcher/ui/pages/modplatform/flame/FlameModPage.cpp
+++ b/launcher/ui/pages/modplatform/flame/FlameModPage.cpp
@@ -147,7 +147,7 @@ void FlameModPage::onSelectionChanged(QModelIndex first, QModelIndex second)
ui->versionSelectionBox->addItem(version.version, QVariant(version.downloadUrl));
}
if(ui->versionSelectionBox->count() == 0){
- ui->versionSelectionBox->addItem(tr("No Valid Version found !"), QVariant(""));
+ ui->versionSelectionBox->addItem(tr("No Valid Version found!"), QVariant(""));
}
suggestCurrent();
@@ -160,7 +160,7 @@ void FlameModPage::onSelectionChanged(QModelIndex first, QModelIndex second)
ui->versionSelectionBox->addItem(version.version, QVariant(version.downloadUrl));
}
if(ui->versionSelectionBox->count() == 0){
- ui->versionSelectionBox->addItem(tr("No Valid Version found !"), QVariant(""));
+ ui->versionSelectionBox->addItem(tr("No Valid Version found!"), QVariant(""));
}
suggestCurrent();
}