Commit a45886137b4ef2b7b94c1e9d332b472c1b7502ce

Fix for bgo#608216

src/Fader.cs: Change the constructor for the fader to accept a double
              representing the number of milliseconds to fade for,
			  instead of the number of seconds.

src/FullScreenView.cs: Change the timeout for entering full screen view to 600ms.
  
2121 double target_opacity;
2222 DoubleAnimation fadin;
2323
24 public Fader (Gtk.Window win, double target, int sec)
24 public Fader (Gtk.Window win, double target, double msec)
2525 {
2626 this.win = win;
2727 win.Mapped += HandleMapped;
2828 win.Unmapped += HandleUnmapped;
29 fadin = new DoubleAnimation (0.0, target, new TimeSpan (0, 0, sec), delegate (double opacity) {
29 fadin = new DoubleAnimation (0.0, target, TimeSpan.FromMilliseconds(msec), delegate (double opacity) {
3030 CompositeUtils.SetWinOpacity (win, opacity);
3131 });
3232 }
  
8585 slide_show.Activated += SlideShowAction;
8686 actions.Add (slide_show);
8787
88 new Fader (this, 1.0, 3);
88 new Fader (this, 1.0, 600);
8989 notebook = new Notebook ();
9090 notebook.ShowBorder = false;
9191 notebook.ShowTabs = false;