From: Jean-Baptiste Mardelle Date: Wed, 13 Jan 2010 21:42:40 +0000 (+0000) Subject: Fix mouse cursor (show resize cursor when necessary) X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=d4048b5cfa6fa527f5f77f1b8b4203673a6427eb;p=kdenlive Fix mouse cursor (show resize cursor when necessary) svn path=/trunk/kdenlive/; revision=4229 --- diff --git a/src/titlewidget.cpp b/src/titlewidget.cpp index 1b878634..3c7b1597 100644 --- a/src/titlewidget.cpp +++ b/src/titlewidget.cpp @@ -360,6 +360,7 @@ TitleWidget::TitleWidget(KUrl url, Timecode tc, QString projectTitlePath, Render // initialize graphic scene m_scene = new GraphicsSceneRectMove(this); graphicsView->setScene(m_scene); + graphicsView->setMouseTracking(true); m_titledocument.setScene(m_scene, m_frameWidth, m_frameHeight); connect(m_scene, SIGNAL(changed(QList)), this, SLOT(slotChanged())); connect(font_size, SIGNAL(valueChanged(int)), m_scene, SLOT(slotUpdateFontSize(int)));