summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPetr Mrázek <peterix@gmail.com>2017-04-06 23:39:50 +0200
committerPetr Mrázek <peterix@gmail.com>2017-04-07 00:20:02 +0200
commitd864c95e2b5e172116370694d59a615a97cf390f (patch)
tree6da638bbac9d7dc467f6d3adcbf7850b87da8cf9
parentdff307557bf69cb2dc6cc264b485865469ef64fd (diff)
downloadMultiMC-d864c95e2b5e172116370694d59a615a97cf390f.tar
MultiMC-d864c95e2b5e172116370694d59a615a97cf390f.tar.gz
MultiMC-d864c95e2b5e172116370694d59a615a97cf390f.tar.lz
MultiMC-d864c95e2b5e172116370694d59a615a97cf390f.tar.xz
MultiMC-d864c95e2b5e172116370694d59a615a97cf390f.zip
NOISSUE disable version customization until further notice
-rw-r--r--application/pages/VersionPage.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/application/pages/VersionPage.cpp b/application/pages/VersionPage.cpp
index 8c14818f..8e8c3d5f 100644
--- a/application/pages/VersionPage.cpp
+++ b/application/pages/VersionPage.cpp
@@ -479,7 +479,8 @@ void VersionPage::updateButtons(int row)
ui->moveUpBtn->setEnabled(patch->isMoveable());
ui->changeVersionBtn->setEnabled(patch->isVersionChangeable());
ui->editBtn->setEnabled(patch->isCustom());
- ui->customizeBtn->setEnabled(patch->isCustomizable());
+ // 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->revertBtn->setEnabled(patch->isRevertible());
}
}
@@ -511,6 +512,8 @@ 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)
{