summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAriya Hidayat <ariya.hidayat@nokia.com>2009-07-17 12:49:24 +0200
committerAriya Hidayat <ariya.hidayat@nokia.com>2009-07-17 12:49:24 +0200
commit3e46739da5fff91f71306b1b561a9a6263904ec3 (patch)
tree6f671671fd1b59d6af4ec03e8060fa1cac2d8106
parente62ed3fd54db90175f17542741a78e3065a66304 (diff)
Fix one pixel off, thanks to aportale.
-rw-r--r--flickable/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/flickable/main.cpp b/flickable/main.cpp
index 02c1526..a90ed1c 100644
--- a/flickable/main.cpp
+++ b/flickable/main.cpp
@@ -133,7 +133,7 @@ protected:
p.setBrush(m_firstColor[i]);
p.drawRect(1, y + 1, m_height - 2, m_height - 2);
p.setBrush(m_secondColor[i]);
- p.drawRect(5, y + 6, m_height - 11, m_height - 11);
+ p.drawRect(5, y + 5, m_height - 11, m_height - 11);
}
p.end();
}