aboutsummaryrefslogtreecommitdiffstats
path: root/gui
diff options
context:
space:
mode:
authorgatecat <gatecat@ds0.me>2021-07-25 12:11:03 +0100
committergatecat <gatecat@ds0.me>2021-07-25 12:11:03 +0100
commitbbb1ea26b629588424d0f5797235b5e7d2320509 (patch)
tree0436205b2a24d57089df214f146c289d9eb0eebb /gui
parent0e3b25468cb839039b7a49f0c5b5aba3db19f580 (diff)
downloadnextpnr-bbb1ea26b629588424d0f5797235b5e7d2320509.tar.gz
nextpnr-bbb1ea26b629588424d0f5797235b5e7d2320509.tar.bz2
nextpnr-bbb1ea26b629588424d0f5797235b5e7d2320509.zip
gui: Fix some typos
Signed-off-by: gatecat <gatecat@ds0.me>
Diffstat (limited to 'gui')
-rw-r--r--gui/basewindow.cc2
-rw-r--r--gui/designwidget.cc8
2 files changed, 5 insertions, 5 deletions
diff --git a/gui/basewindow.cc b/gui/basewindow.cc
index 6e64bf6f..2ebbe2b9 100644
--- a/gui/basewindow.cc
+++ b/gui/basewindow.cc
@@ -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);
diff --git a/gui/designwidget.cc b/gui/designwidget.cc
index 369596c7..749c25a6 100644
--- a/gui/designwidget.cc
+++ b/gui/designwidget.cc
@@ -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) {