summaryrefslogtreecommitdiff
path: root/noncore
authorleseb <leseb>2002-11-14 19:34:55 (UTC)
committer leseb <leseb>2002-11-14 19:34:55 (UTC)
commit4b28f45cd1f6a72f41219786c7fb411523a6d622 (patch) (unidiff)
tree1970f579a6e1bb3de20e0cb18eab169691542ae7 /noncore
parentf27919a0b1c36c568a0a7d4480e3a37e3f6e67af (diff)
downloadopie-4b28f45cd1f6a72f41219786c7fb411523a6d622.zip
opie-4b28f45cd1f6a72f41219786c7fb411523a6d622.tar.gz
opie-4b28f45cd1f6a72f41219786c7fb411523a6d622.tar.bz2
Should fix bug 0000448
Diffstat (limited to 'noncore') (more/less context) (show whitespace changes)
-rw-r--r--noncore/graphics/drawpad/filltool.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/noncore/graphics/drawpad/filltool.cpp b/noncore/graphics/drawpad/filltool.cpp
index 2a39d04..b47aa60 100644
--- a/noncore/graphics/drawpad/filltool.cpp
+++ b/noncore/graphics/drawpad/filltool.cpp
@@ -33,12 +33,17 @@ FillTool::~FillTool()
33void FillTool::mousePressEvent(QMouseEvent* e) 33void FillTool::mousePressEvent(QMouseEvent* e)
34{ 34{
35 int x = e->x(); 35 int x = e->x();
36 int y = e->y(); 36 int y = e->y();
37 37
38 m_image = m_pDrawPadCanvas->currentPage()->pixmap()->convertToImage(); 38 m_image = m_pDrawPadCanvas->currentPage()->pixmap()->convertToImage();
39
40 if (m_image.depth() <= 8) {
41 m_image = m_image.convertDepth(32);
42 }
43
39 m_fillRgb = m_pDrawPad->brush().color().rgb(); 44 m_fillRgb = m_pDrawPad->brush().color().rgb();
40 m_oldRgb = m_image.pixel(x, y); 45 m_oldRgb = m_image.pixel(x, y);
41 46
42 if (m_oldRgb != m_fillRgb) { 47 if (m_oldRgb != m_fillRgb) {
43 m_pDrawPadCanvas->backupPage(); 48 m_pDrawPadCanvas->backupPage();
44 49