summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--noncore/graphics/opie-eye/slave/slavereciever.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/noncore/graphics/opie-eye/slave/slavereciever.cpp b/noncore/graphics/opie-eye/slave/slavereciever.cpp
index 82b3d23..fb88873 100644
--- a/noncore/graphics/opie-eye/slave/slavereciever.cpp
+++ b/noncore/graphics/opie-eye/slave/slavereciever.cpp
@@ -187,5 +187,11 @@ void SlaveReciever::slotThumbNail() {
187 /* pixmap */ 187 /* pixmap */
188 owarn << "Asking for thumbNail in size " << inf.width << " " << inf.height << " for "+inf.file << oendl; 188 owarn << "Asking for thumbNail in size " << inf.width << " " << inf.height << " for "+inf.file << oendl;
189 if (inf.width>256||inf.height>256) {
190 owarn << "Scaling thumbnail to 64x64 'cause " << inf.width<<"x"<<inf.height<<
191 " may be nonsense";
189 inf.pixmap = iface->pixmap(inf.file, 64, 64); 192 inf.pixmap = iface->pixmap(inf.file, 64, 64);
193 }else {
194 inf.pixmap = iface->pixmap(inf.file, inf.width, inf.height);
195 }
190 m_outPix.append( inf ); 196 m_outPix.append( inf );
191 break; 197 break;