Merge pull request #942 from yrabbit/bugfix-1

gowin: BUGFIX temporarily disable the budget
This commit is contained in:
gatecat 2022-03-14 07:53:48 +00:00 committed by GitHub
commit b852df3260
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -74,6 +74,9 @@ void MainWindow::createMenu()
menuDesign->addSeparator();
menuDesign->addAction(actionLoadCST);
// XXX
actionAssignBudget->setEnabled(false);
}
void MainWindow::new_proj() {}
@ -99,5 +102,7 @@ void MainWindow::onUpdateActions()
if (ctx->settings.find(ctx->id("pack")) != ctx->settings.end()) {
actionLoadCST->setEnabled(false);
}
// XXX
actionAssignBudget->setEnabled(false);
}
NEXTPNR_NAMESPACE_END