diff --git a/LemonUI/Menus/NativeListItem.cs b/LemonUI/Menus/NativeListItem.cs index 63b931b6..41ebc61c 100644 --- a/LemonUI/Menus/NativeListItem.cs +++ b/LemonUI/Menus/NativeListItem.cs @@ -266,8 +266,7 @@ public override void Recalculate(PointF pos, SizeF size, bool selected) text.Color = NativeMenu.colorWhiteSmoke; } // And set the position of the left arrow and text - float textWidth = RightArrow.Size.Width; - text.Position = new PointF(pos.X + size.Width - textWidth - 1 - text.Width, pos.Y + 3); + text.Position = new PointF(pos.X + size.Width - RightArrow.Size.Width - 1 - text.Width, pos.Y + 3); LeftArrow.Position = new PointF(text.Position.X - LeftArrow.Size.Width, pos.Y + 4); } ///