diff options
author | Alexandru Ionut Tripon <alexandru.tripon97@gmail.com> | 2023-08-22 16:16:50 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-22 16:16:50 +0300 |
commit | 3574d89e0f6ea9d507e5c4844d07a2aeac9ade97 (patch) | |
tree | 399803af671f86094994662461e936cf0cf014cc | |
parent | 09aca7a0b573047df567d349ba9b792d2ffbc16e (diff) | |
download | PrismLauncher-3574d89e0f6ea9d507e5c4844d07a2aeac9ade97.tar.gz PrismLauncher-3574d89e0f6ea9d507e5c4844d07a2aeac9ade97.tar.bz2 PrismLauncher-3574d89e0f6ea9d507e5c4844d07a2aeac9ade97.zip |
Update launcher/ui/pages/global/JavaPage.cpp
Co-authored-by: Tayou <31988415+TayouVR@users.noreply.github.com>
Signed-off-by: Alexandru Ionut Tripon <alexandru.tripon97@gmail.com>
-rw-r--r-- | launcher/ui/pages/global/JavaPage.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/launcher/ui/pages/global/JavaPage.cpp b/launcher/ui/pages/global/JavaPage.cpp index d36fca99..ac50319e 100644 --- a/launcher/ui/pages/global/JavaPage.cpp +++ b/launcher/ui/pages/global/JavaPage.cpp @@ -197,7 +197,7 @@ void JavaPage::updateThresholds() ui->labelMaxMemIcon->setToolTip(tr("Your maximum memory allocation approaches your system memory capacity.")); } else if (maxMem < minMem) { iconName = "status-yellow"; - ui->labelMaxMemIcon->setToolTip(tr("Your maximum memory allocation is smaller that the minimum value")); + ui->labelMaxMemIcon->setToolTip(tr("Your maximum memory allocation is smaller than the minimum value")); } else { iconName = "status-good"; ui->labelMaxMemIcon->setToolTip(""); |