|
From: Tapio V. <aa...@us...> - 2011-02-23 18:51:52
|
Author: Tapio Vierros <tap...@gm...>
Date: Wed Feb 23 20:34:44 2011 +0200
Narrower SeekHandle.
---
notegraphwidget.cc | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/notegraphwidget.cc b/notegraphwidget.cc
index 96f584c..e51dc39 100644
--- a/notegraphwidget.cc
+++ b/notegraphwidget.cc
@@ -696,7 +696,7 @@ QString NoteGraphWidget::dumpLyrics() const
SeekHandle::SeekHandle(QWidget *parent)
: QLabel(parent)
{
- QImage image(16, 768, QImage::Format_ARGB32_Premultiplied);
+ QImage image(8, 768, QImage::Format_ARGB32_Premultiplied);
image.fill(qRgba(128, 128, 128, 128));
setPixmap(QPixmap::fromImage(image));
setMouseTracking(true);
|