diff options
author | gatecat <gatecat@ds0.me> | 2021-07-25 13:07:47 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-25 13:07:47 +0100 |
commit | ef3be26a697466f330c442be6bf3d9613395081b (patch) | |
tree | 0436205b2a24d57089df214f146c289d9eb0eebb /gui/designwidget.cc | |
parent | 5212e38512586a6aea0a3b075d30cd172026cd3e (diff) | |
parent | bbb1ea26b629588424d0f5797235b5e7d2320509 (diff) | |
download | nextpnr-ef3be26a697466f330c442be6bf3d9613395081b.tar.gz nextpnr-ef3be26a697466f330c442be6bf3d9613395081b.tar.bz2 nextpnr-ef3be26a697466f330c442be6bf3d9613395081b.zip |
Merge pull request #777 from YosysHQ/gatecat/gui-fixes
gui: Add about box and fix some small typos
Diffstat (limited to 'gui/designwidget.cc')
-rw-r--r-- | gui/designwidget.cc | 8 |
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) {
|