This commit is contained in:
joshua
2022-11-05 13:28:39 +01:00
parent ad97559b7c
commit ae8c20bb04
3 changed files with 2 additions and 3 deletions

View File

@@ -99,7 +99,7 @@ void DiagramEventAddElement::mouseMoveEvent(QGraphicsSceneMouseEvent *event)
m_element->setPos(pos_);
if (m_status_bar) {
m_status_bar->showMessage(QString(QLatin1String("x %1 : y %2")).arg(QString::number(pos_.x()), QString::number(pos_.y())));
m_status_bar->showMessage(QString("x %1 : y %2").arg(QString::number(pos_.x()), QString::number(pos_.y())));
}
}
event->setAccepted(true);