diff options
Diffstat (limited to 'src/previewimage.cpp')
-rw-r--r-- | src/previewimage.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/previewimage.cpp b/src/previewimage.cpp index e7f8aea5..f5421fe3 100644 --- a/src/previewimage.cpp +++ b/src/previewimage.cpp @@ -74,6 +74,8 @@ PreviewImage::PreviewImage(const QUrl &url, const QString &title, int index, boo setLayout(mainLayout); loadUrlPreview(url); + + setCursor(Qt::PointingHandCursor); } @@ -119,6 +121,7 @@ void PreviewImage::loadUrlPreview(const QUrl& url) m_imageLabel->setMovie(movie); movie->start(); m_textLabel->setText( i18n("Loading preview...") ); + setCursor(Qt::BusyCursor); } } @@ -135,6 +138,8 @@ void PreviewImage::snapFinished() checkTitle(); m_textLabel->setText(m_title); + setCursor(Qt::PointingHandCursor); + // kDebug() << "m_pixmap: " << m_pixmap.size(); // kDebug() << "text label: " << m_textLabel->size(); // kDebug() << "image label: " << m_imageLabel->size(); |