Skip to content

Commit

Permalink
Remove snowflake sprites. Make REALLY transparent.
Browse files Browse the repository at this point in the history
  • Loading branch information
billiegoose committed Sep 18, 2015
1 parent c81650c commit b6b1f29
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Pixie.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public virtual bool Update()

public virtual void Draw()
{
screensaver.Graphics0.DrawString("Will is Amazing", new Font("OCR A Extended", 8), brush, new PointF(x, y));
//screensaver.Graphics0.DrawString("Will is Amazing", new Font("OCR A Extended", 8), brush, new PointF(x, y));
}
}
}
2 changes: 1 addition & 1 deletion Screensaver.cs
Original file line number Diff line number Diff line change
Expand Up @@ -695,7 +695,7 @@ internal Window(Screensaver screensaver, Form form)

//form.BackColor = Color.Lime;
//form.TransparencyKey = Color.Lime;
form.Opacity = 0.3;
form.Opacity = 0.01;

this.screensaver.PreUpdate += new EventHandler(screensaver_PreUpdate);
this.screensaver.PostUpdate += new EventHandler(screensaver_PostUpdate);
Expand Down

0 comments on commit b6b1f29

Please sign in to comment.