diff options
author | Ryan Cao <70191398+ryanccn@users.noreply.github.com> | 2022-05-29 20:35:57 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-29 20:35:57 +0800 |
commit | 20832682efc4205f350c27c1d8aa6681925c76e6 (patch) | |
tree | fa66e3663aa25b91d13228a46aa9df9f76fd670e /launcher/ui/pages | |
parent | d4c1d627814ab4719c7baec56941e8cc1038510e (diff) | |
download | PrismLauncher-20832682efc4205f350c27c1d8aa6681925c76e6.tar.gz PrismLauncher-20832682efc4205f350c27c1d8aa6681925c76e6.tar.bz2 PrismLauncher-20832682efc4205f350c27c1d8aa6681925c76e6.zip |
Update launcher/ui/pages/global/JavaPage.cpp
Co-authored-by: Sefa Eyeoglu <contact@scrumplex.net>
Diffstat (limited to 'launcher/ui/pages')
-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 88607e32..025771e8 100644 --- a/launcher/ui/pages/global/JavaPage.cpp +++ b/launcher/ui/pages/global/JavaPage.cpp @@ -166,7 +166,7 @@ void JavaPage::on_javaTestBtn_clicked() return; } checker.reset(new JavaCommon::TestCheck( - this, ui->javaPathTextBox->text(), ui->jvmArgsTextBox->toPlainText(), + this, ui->javaPathTextBox->text(), ui->jvmArgsTextBox->toPlainText().replace("\n", " "), ui->minMemSpinBox->value(), ui->maxMemSpinBox->value(), ui->permGenSpinBox->value())); connect(checker.get(), SIGNAL(finished()), SLOT(checkerFinished())); checker->run(); |