From bbb1ea26b629588424d0f5797235b5e7d2320509 Mon Sep 17 00:00:00 2001 From: gatecat Date: Sun, 25 Jul 2021 12:11:03 +0100 Subject: gui: Fix some typos Signed-off-by: gatecat --- gui/basewindow.cc | 2 +- gui/designwidget.cc | 8 ++++---- 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) { -- cgit v1.2.3