mirror of
https://github.com/YosysHQ/nextpnr.git
synced 2026-04-26 12:17:01 +00:00
@@ -180,7 +180,7 @@ void BaseMainWindow::createMenusAndBars()
|
||||
|
||||
actionAssignBudget = new QAction("Assign Budget", this);
|
||||
actionAssignBudget->setIcon(QIcon(":/icons/resources/time_add.png"));
|
||||
actionAssignBudget->setStatusTip("Assign time budget for current design");
|
||||
actionAssignBudget->setStatusTip("Assign timing budget for current design");
|
||||
actionAssignBudget->setEnabled(false);
|
||||
connect(actionAssignBudget, &QAction::triggered, this, &BaseMainWindow::budget);
|
||||
|
||||
|
||||
@@ -655,8 +655,8 @@ void DesignWidget::onSelectionChanged(int num, const QItemSelection &, const QIt
|
||||
DelayQuad delay = ctx->getWireDelay(wire);
|
||||
|
||||
QtProperty *delayItem = addSubGroup(topItem, "Delay");
|
||||
addProperty(delayItem, QVariant::Double, "Min Raise", delay.minRiseDelay());
|
||||
addProperty(delayItem, QVariant::Double, "Max Raise", delay.maxRiseDelay());
|
||||
addProperty(delayItem, QVariant::Double, "Min Rise", delay.minRiseDelay());
|
||||
addProperty(delayItem, QVariant::Double, "Max Rise", delay.maxRiseDelay());
|
||||
addProperty(delayItem, QVariant::Double, "Min Fall", delay.minFallDelay());
|
||||
addProperty(delayItem, QVariant::Double, "Max Fall", delay.maxFallDelay());
|
||||
|
||||
@@ -724,8 +724,8 @@ void DesignWidget::onSelectionChanged(int num, const QItemSelection &, const QIt
|
||||
DelayQuad delay = ctx->getPipDelay(pip);
|
||||
|
||||
QtProperty *delayItem = addSubGroup(topItem, "Delay");
|
||||
addProperty(delayItem, QVariant::Double, "Min Raise", delay.minRiseDelay());
|
||||
addProperty(delayItem, QVariant::Double, "Max Raise", delay.maxRiseDelay());
|
||||
addProperty(delayItem, QVariant::Double, "Min Rise", delay.minRiseDelay());
|
||||
addProperty(delayItem, QVariant::Double, "Max Rise", delay.maxRiseDelay());
|
||||
addProperty(delayItem, QVariant::Double, "Min Fall", delay.minFallDelay());
|
||||
addProperty(delayItem, QVariant::Double, "Max Fall", delay.maxFallDelay());
|
||||
} else if (type == ElementType::NET) {
|
||||
|
||||
Reference in New Issue
Block a user