Skip to content

Commit

Permalink
Aligned Icon in the middle of the Notification Bar
Browse files Browse the repository at this point in the history
Resolves kas#19
  • Loading branch information
jensschaefer authored Jul 12, 2020
1 parent 20cc010 commit 1b032e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion percentage/percentage/TrayIcon.cs
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ private Image DrawText(String text, Font font, Color textColor, Color backColor)
using (Brush textBrush = new SolidBrush(textColor))
{
graphics.TextRenderingHint = System.Drawing.Text.TextRenderingHint.AntiAlias;
graphics.DrawString(text, font, textBrush, 0, 0);
graphics.DrawString(text, font, textBrush, 0, 5.0F);
graphics.Save();
}
}
Expand Down

0 comments on commit 1b032e3

Please sign in to comment.