summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPetr Mrázek <peterix@gmail.com>2017-04-08 22:04:07 +0200
committerPetr Mrázek <peterix@gmail.com>2017-04-08 22:04:07 +0200
commitdb7357d008ae1f4ac0599b7e410ab666dbea5805 (patch)
tree8fde69485cff73a51a594a82959efaece9025891
parent795889d934e8f4ebe89be1a49a3417fd98e89be1 (diff)
downloadMultiMC-db7357d008ae1f4ac0599b7e410ab666dbea5805.tar
MultiMC-db7357d008ae1f4ac0599b7e410ab666dbea5805.tar.gz
MultiMC-db7357d008ae1f4ac0599b7e410ab666dbea5805.tar.lz
MultiMC-db7357d008ae1f4ac0599b7e410ab666dbea5805.tar.xz
MultiMC-db7357d008ae1f4ac0599b7e410ab666dbea5805.zip
Revert "NOISSUE disable version customization until further notice"
This reverts commit d864c95e2b5e172116370694d59a615a97cf390f.
-rw-r--r--application/pages/VersionPage.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/application/pages/VersionPage.cpp b/application/pages/VersionPage.cpp
index 8e8c3d5f..8c14818f 100644
--- a/application/pages/VersionPage.cpp
+++ b/application/pages/VersionPage.cpp
@@ -479,8 +479,7 @@ void VersionPage::updateButtons(int row)
ui->moveUpBtn->setEnabled(patch->isMoveable());
ui->changeVersionBtn->setEnabled(patch->isVersionChangeable());
ui->editBtn->setEnabled(patch->isCustom());
- // FIXME: temporarily disabled, bring it back when the new format is stable and ready to replace the 'OneSix' one...
- ui->customizeBtn->setEnabled(false); // patch->isCustomizable()
+ ui->customizeBtn->setEnabled(patch->isCustomizable());
ui->revertBtn->setEnabled(patch->isRevertible());
}
}
@@ -512,8 +511,6 @@ int VersionPage::currentRow()
void VersionPage::on_customizeBtn_clicked()
{
- // FIXME: temporarily disabled, bring it back when the new format is stable and ready to replace the 'OneSix' one...
- return;
auto version = currentRow();
if(version == -1)
{