| 
				
			 | 
			
			
				@@ -478,7 +478,7 @@ public class ViewShot implements UIBlock { 
			 | 
		
	
		
			
			| 
				478
			 | 
			
				478
			 | 
			
			
				     private static Bitmap getBitmapForScreenshot(final int width, final int height) { 
			 | 
		
	
		
			
			| 
				479
			 | 
			
				479
			 | 
			
			
				         synchronized (guardBitmaps) { 
			 | 
		
	
		
			
			| 
				480
			 | 
			
				480
			 | 
			
			
				             for (final Bitmap bmp : weakBitmaps) { 
			 | 
		
	
		
			
			| 
				481
			 | 
			
				
			 | 
			
			
				-                if (bmp.getWidth() >= width && bmp.getHeight() >= height) { 
			 | 
		
	
		
			
			| 
				
			 | 
			
				481
			 | 
			
			
				+                if (bmp.getWidth() == width && bmp.getHeight() == height) { 
			 | 
		
	
		
			
			| 
				482
			 | 
			
				482
			 | 
			
			
				                     weakBitmaps.remove(bmp); 
			 | 
		
	
		
			
			| 
				483
			 | 
			
				483
			 | 
			
			
				                     bmp.eraseColor(Color.TRANSPARENT); 
			 | 
		
	
		
			
			| 
				484
			 | 
			
				484
			 | 
			
			
				                     return bmp; 
			 |