remove unnecessary usings

This commit is contained in:
rootdarkarchon
2023-10-29 15:10:51 +01:00
parent c23add802a
commit 6bf99d9d05
11 changed files with 2 additions and 17 deletions

View File

@@ -23,7 +23,6 @@ using System.Numerics;
using System.Runtime.InteropServices;
using System.Text;
using System.Text.RegularExpressions;
using static System.Net.Mime.MediaTypeNames;
namespace MareSynchronos.UI;
@@ -339,7 +338,7 @@ public partial class UiSharedService : DisposableMediatorSubscriberBase
if (width == null || width <= 0)
{
var buttonSizeX = iconData.NormalizedIconScale.X + (padding.X * 4) + iconExtraSpacing + textSize.X;
var buttonSizeX = iconData.NormalizedIconScale.X + (padding.X * 3) + iconExtraSpacing + textSize.X;
return new Vector2(buttonSizeX, buttonSizeY);
}
else