remove public option

This commit is contained in:
Joona
2017-08-22 12:52:31 -07:00
committed by Petr Mrázek
parent 4d54d2662a
commit ced67a7400
2 changed files with 1 additions and 17 deletions

View File

@ -43,11 +43,7 @@ void PasteEEPage::loadSettings()
{
auto s = MMC->settings();
QString keyToUse = s->get("PasteEEAPIKey").toString();
if(keyToUse == "public")
{
ui->publicButton->setChecked(true);
}
else if(keyToUse == "multimc")
if(keyToUse == "multimc")
{
ui->multimcButton->setChecked(true);
}
@ -65,8 +61,6 @@ void PasteEEPage::applySettings()
QString pasteKeyToUse;
if (ui->customButton->isChecked())
pasteKeyToUse = ui->customAPIkeyEdit->text();
else if (ui->publicButton->isChecked())
pasteKeyToUse = "public";
else
{
pasteKeyToUse = "multimc";