summaryrefslogtreecommitdiff
path: root/noncore/graphics/opie-eye/slave/slavereciever.cpp
authoralwin <alwin>2004-04-04 19:08:33 (UTC)
committer alwin <alwin>2004-04-04 19:08:33 (UTC)
commit10eac928ae0a1441529f7d38dd774740af477481 (patch) (unidiff)
tree18684ff7f6a8b15f936ee4428ea58b1f164dd477 /noncore/graphics/opie-eye/slave/slavereciever.cpp
parent4588425855268ce88a80ddbac7e1c3d4b87b03f4 (diff)
downloadopie-10eac928ae0a1441529f7d38dd774740af477481.zip
opie-10eac928ae0a1441529f7d38dd774740af477481.tar.gz
opie-10eac928ae0a1441529f7d38dd774740af477481.tar.bz2
thumbnails will respect again the dimension values wished. just when them
seems to be nonsens we will use hard wired 64x64 pix
Diffstat (limited to 'noncore/graphics/opie-eye/slave/slavereciever.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/graphics/opie-eye/slave/slavereciever.cpp10
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
@@ -185,8 +185,14 @@ void SlaveReciever::slotThumbNail() {
185 SlaveInterface* iface = it.data(); 185 SlaveInterface* iface = it.data();
186 if( iface->supports(inf.file ) ) { 186 if( iface->supports(inf.file ) ) {
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 inf.pixmap = iface->pixmap(inf.file, 64, 64); 189 if (inf.width>256||inf.height>256) {
190 owarn << "Scaling thumbnail to 64x64 'cause " << inf.width<<"x"<<inf.height<<
191 " may be nonsense";
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;
192 } 198 }