commented outdated implementations of ClickableAt(int, int) and Contains(int, int)

This commit is contained in:
JKlingen 2014-10-22 22:20:01 +02:00
parent 825bc4b7f4
commit 86d99a5a0d
2 changed files with 4 additions and 4 deletions

View file

@ -396,10 +396,10 @@ namespace Greenshot.Drawing {
}
}
public override bool ClickableAt(int x, int y) {
/*public override bool ClickableAt(int x, int y) {
Rectangle r = GuiRectangle.GetGuiRectangle(Left, Top, Width, Height);
r.Inflate(5, 5);
return r.Contains(x, y);
}
}*/
}
}