-rw-r--r-- | noncore/graphics/opie-eye/slave/slavereciever.cpp | 10 |
1 files changed, 8 insertions, 2 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 @@ -186,6 +186,12 @@ void SlaveReciever::slotThumbNail() { if( iface->supports(inf.file ) ) { /* pixmap */ - owarn << "Asking for thumbNail in size " << inf.width << " " << inf.height << " for "+inf.file << oendl; - inf.pixmap = iface->pixmap(inf.file, 64, 64); + owarn << "Asking for thumbNail in size " << inf.width << " " << inf.height << " for "+inf.file << oendl; + if (inf.width>256||inf.height>256) { + owarn << "Scaling thumbnail to 64x64 'cause " << inf.width<<"x"<<inf.height<< + " may be nonsense"; + inf.pixmap = iface->pixmap(inf.file, 64, 64); + }else { + inf.pixmap = iface->pixmap(inf.file, inf.width, inf.height); + } m_outPix.append( inf ); break; |