diff --git a/Controls/TransparentLabel.cs b/Controls/TransparentLabel.cs index b828bd477..783f04e92 100644 --- a/Controls/TransparentLabel.cs +++ b/Controls/TransparentLabel.cs @@ -105,7 +105,7 @@ public void Draw(Graphics g) { } brFore.Color = this.LevelColor.IsEmpty ? this.ForeColor : Color.White; stringFormat.Alignment = StringAlignment.Near; - this.DrawOutlineText(g, new RectangleF(roundRect.X + 0.33f, ClientRectangle.Y, this.ClientRectangle.Width, this.ClientRectangle.Height), null, brFore, fontForLongText.FontFamily, fontForLongText.Style, fontForLongText.Size, this.TextRight, stringFormat); + this.DrawOutlineText(g, new RectangleF(roundRect.X + 0.2f, ClientRectangle.Y, this.ClientRectangle.Width, this.ClientRectangle.Height), null, brFore, fontForLongText.FontFamily, fontForLongText.Style, fontForLongText.Size, this.TextRight, stringFormat); } else { brFore.Color = this.LevelColor.IsEmpty ? this.ForeColor : Color.White; this.DrawOutlineText(g, this.ClientRectangle, null, brFore, fontForLongText.FontFamily, fontForLongText.Style, fontForLongText.Size, this.TextRight, stringFormat);