Message Config - snazzier "X"

This commit is contained in:
adelikat 2012-09-25 04:11:54 +00:00
parent 1fe65754f1
commit 88d17bbb1c
1 changed files with 4 additions and 2 deletions

View File

@ -288,8 +288,10 @@ namespace BizHawk.MultiClient
private void PositionPanel_Paint(object sender, PaintEventArgs e)
{
Pen p = new Pen(brush);
e.Graphics.DrawLine(p, new Point(px - 2, py - 2), new Point(px + 2, py + 2));
e.Graphics.DrawLine(p, new Point(px + 2, py - 2), new Point(px - 2, py + 2));
e.Graphics.DrawLine(p, new Point(px - 4, py - 4), new Point(px + 4, py + 4));
e.Graphics.DrawLine(p, new Point(px + 4, py - 4), new Point(px - 4, py + 4));
Rectangle rect = new Rectangle(px - 4, py - 4, 8, 8);
e.Graphics.DrawRectangle(p, rect);
}
private void PositionPanel_MouseDown(object sender, MouseEventArgs e)