[f-spot] use bilinear interp for slideshow too



commit 7c5eee68d3e1b1bcc86bd5a2e0497528c4dd195f
Author: Stephane Delcroix <stephane delcroix org>
Date:   Fri Nov 13 14:00:20 2009 +0100

    use bilinear interp for slideshow too

 src/Widgets/SlideShow.cs |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/Widgets/SlideShow.cs b/src/Widgets/SlideShow.cs
index cf67ffb..8c8ba18 100644
--- a/src/Widgets/SlideShow.cs
+++ b/src/Widgets/SlideShow.cs
@@ -111,7 +111,7 @@ namespace FSpot.Widgets
 							int h = (int)(pb.Height * scale);
 	
 							if (w > 0 && h > 0)
-								next = pb.ScaleSimple ((int)(pb.Width * scale), (int)(pb.Height * scale), InterpType.Nearest);
+								next = pb.ScaleSimple ((int)(pb.Width * scale), (int)(pb.Height * scale), InterpType.Bilinear);
 						}
 						Cms.Profile screen_profile;
 						if (FSpot.ColorManagement.Profiles.TryGetValue (Preferences.Get<string> (Preferences.COLOR_MANAGEMENT_DISPLAY_PROFILE), out screen_profile)) 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]