aboutsummaryrefslogtreecommitdiffstats
path: root/gui/designwidget.cc
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/designwidget.cc
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/designwidget.cc')
-rw-r--r--gui/designwidget.cc8
1 files changed, 4 insertions, 4 deletions
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) {