[multimedia/kdenlive] src/titler: Fix corner radius input not updating when dragging
Jean-Baptiste Mardelle <[email protected]>
| Newsgroups | gmane.comp.kde.cvs |
|---|---|
| Message-ID | <[email protected]> |
Git commit 507dff83e3a6f2c483b3b73d5b63c35e77cfb07a by Jean-Baptiste Mardelle, on behalf of chocolate image.
Committed on 07/08/2026 at 12:02.
Pushed by mardelle into branch 'master'.
Fix corner radius input not updating when dragging
M +1 -0 src/titler/graphicsscenerectmove.cpp
https://invent.kde.org/multimedia/kdenlive/-/commit/507dff83e3a6f2c483b3b73d5b63c35e77cfb07a
diff --git a/src/titler/graphicsscenerectmove.cpp b/src/titler/graphicsscenerectmove.cpp
index 5f1186810c..4ae73af4aa 100644
--- a/src/titler/graphicsscenerectmove.cpp
+++ b/src/titler/graphicsscenerectmove.cpp
@@ -1352,6 +1352,7 @@ void GraphicsSceneRectMove::mouseMoveEvent(QGraphicsSceneMouseEvent *e)
if (newRadius > maxRadius) newRadius = maxRadius;
auto rectItem = static_cast<MyRectItem *>(m_selectedItem);
rectItem->setCornerRadius(newRadius);
+ Q_EMIT itemMoved();
return;
}
default: