]> cloud.milkyroute.net Git - dolphin.git/blobdiff - src/kitemviews/kpixmapmodifier.cpp
SVN_SILENT made messages (.desktop file)
[dolphin.git] / src / kitemviews / kpixmapmodifier.cpp
index f6838c032696c205ef55fbbef267b956f9aec26a..91f22da3c14160c62edd6e7bb2b0788a74fce3f8 100644 (file)
@@ -362,10 +362,10 @@ void KPixmapModifier::scale(QPixmap& pixmap, const QSize& scaledSize)
                          0, 0, 0, 0, 0, 0, scaledPixmap.width(), scaledPixmap.height());
         pixmap = scaledPixmap;
     } else {
-        pixmap = pixmap.scaled(scaledSize, Qt::KeepAspectRatio, Qt::FastTransformation);
+        pixmap = pixmap.scaled(scaledSize, Qt::KeepAspectRatio, Qt::SmoothTransformation);
     }
 #else
-    pixmap = pixmap.scaled(scaledSize, Qt::KeepAspectRatio, Qt::FastTransformation);
+    pixmap = pixmap.scaled(scaledSize, Qt::KeepAspectRatio, Qt::SmoothTransformation);
 #endif
 }