Sophie

Sophie

distrib > Mandriva > 2008.0 > x86_64 > media > main-backports-src > by-pkgid > 722cfb79b749133e9bf9829ecfbb4315 > files > 1

gwenview-1.4.2-8mdv2008.0.src.rpm

Index: gvcore/documentimpl.cpp
===================================================================
--- gvcore/documentimpl.cpp	(revisione 763142)
+++ gvcore/documentimpl.cpp	(revisione 763143)
@@ -38,6 +38,11 @@
 }
 
 void DocumentImpl::setImage(QImage img) {
+	if (img.depth() == 1) {
+		// 1 bit depth images are difficult to scale. Let's convert to 8 bit
+		// depth. See bug #155518.
+		img = img.convertDepth(8);
+	}
 	mDocument->setImage(img);
 }