diff --git a/Greenshot/Drawing/SpeechbubbleContainer.cs b/Greenshot/Drawing/SpeechbubbleContainer.cs index 1ee2d3832..0791f3404 100644 --- a/Greenshot/Drawing/SpeechbubbleContainer.cs +++ b/Greenshot/Drawing/SpeechbubbleContainer.cs @@ -215,7 +215,7 @@ namespace Greenshot.Drawing { DrawText(graphics, rect, lineThickness, lineColor, false, StringFormat, Text, Font); } - public override bool Contains(int x, int y) { + /*public override bool Contains(int x, int y) { double xDistanceFromCenter = x - (Left + Width / 2); double yDistanceFromCenter = y - (Top + Height / 2); // ellipse: x^2/a^2 + y^2/b^2 = 1 @@ -246,6 +246,6 @@ namespace Greenshot.Drawing { } else { return false; } - } + }*/ } } diff --git a/Greenshot/Drawing/TextContainer.cs b/Greenshot/Drawing/TextContainer.cs index 1ae089cdd..82e67f09e 100644 --- a/Greenshot/Drawing/TextContainer.cs +++ b/Greenshot/Drawing/TextContainer.cs @@ -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); - } + }*/ } }