From 6ac4fbee7f672ea67863926b7432c8762d85624f Mon Sep 17 00:00:00 2001 From: Rejean Loyer Date: Wed, 14 Sep 2011 18:53:23 -0400 Subject: [PATCH] Revert "libede:FileSystemBox: complete migration of previewPictures support code from old explorer" This reverts commit 6669a8c6eaeff148918f97990b71a5aea65f33a2. --- libede/src/FileSystemBox.ec | 25 +------------------------ 1 file changed, 1 insertion(+), 24 deletions(-) diff --git a/libede/src/FileSystemBox.ec b/libede/src/FileSystemBox.ec index 9119ec9..550dd3f 100644 --- a/libede/src/FileSystemBox.ec +++ b/libede/src/FileSystemBox.ec @@ -321,29 +321,6 @@ public: if(icon) { - w = icon.width; - h = icon.height; - } - if(type == pictureFile && fsb.previewPictures && bitmap) - { - surface.SetForeground(white); - surface.blend = true; - //#ifndef __linux__ - //surface.Filter(bitmap, (clientSize.w - w) / 2,(clientSize.h - h) / 2, 0,0, w, h, bitmap.width, bitmap.height); - //surface.Filter(bitmap, x + indent/* * indentSize*/ + 2, y, 0, 0, w, h, bitmap.width, bitmap.height); - surface.Filter(bitmap, x,y,0,0, w, h, bitmap.width, bitmap.height); - //#else - // Until Filter / Stretch works with X - //surface.Blit(bitmap, (clientSize.w - bitmap.width) / 2,(clientSize.h - bitmap.height) / 2, 0,0, bitmap.width, bitmap.height); - // surface.blend = true; - //surface.Blit(bitmap, x + indent/* * indentSize*/ + 2, y,0,0, w, h); - //surface.Blit(bitmap, x,y,0,0, bitmap.width, bitmap.height); - //#endif - //bitmap.Free(); - //delete bitmap; - } - else if(icon) - { //surface.blend = true; //surface.alphaWrite = blend; surface.SetForeground(white); @@ -473,7 +450,7 @@ static FileSystemNode MakeFileSystemNode(const FileStats stats, if(node.type == pictureFile && previewPicture) { - node.bitmap = Bitmap { alphaBlend = true }; + node.bitmap = Bitmap { }; node.bitmap.Load(filePath, null, displaySystem); } -- 1.8.3.1