diff --git a/Greenshot/Drawing/SpeechbubbleContainer.cs b/Greenshot/Drawing/SpeechbubbleContainer.cs index f90643ae9..0cdfb91c1 100644 --- a/Greenshot/Drawing/SpeechbubbleContainer.cs +++ b/Greenshot/Drawing/SpeechbubbleContainer.cs @@ -56,9 +56,10 @@ namespace Greenshot.Drawing /// /// Restore the target gripper /// - /// - protected override void OnDeserialized(StreamingContext context) + /// StreamingContext + protected override void OnDeserialized(StreamingContext streamingContext) { + base.OnDeserialized(streamingContext); InitAdorner(Color.Green, _storedTargetGripperLocation); } #endregion @@ -303,7 +304,6 @@ namespace Greenshot.Drawing tail.Dispose(); // Draw the text - UpdateFormat(); DrawText(graphics, rect, lineThickness, lineColor, shadow, StringFormat, Text, Font); }