diff --git a/Content.Client/Paper/UI/StampWidget.xaml.cs b/Content.Client/Paper/UI/StampWidget.xaml.cs index 79ec333977bf..3ce5287f2ddf 100644 --- a/Content.Client/Paper/UI/StampWidget.xaml.cs +++ b/Content.Client/Paper/UI/StampWidget.xaml.cs @@ -31,7 +31,6 @@ public StampDisplayInfo StampInfo { "/Textures/_Impstation/Interface/Paper/Stamps/" + icon + ".png"); _borderTexture = new StyleBoxTexture { Texture = borderImage }; - //_borderTexture.SetPatchMargin(StyleBoxTexture.Margin.All, 7.0f); PanelOverride = _borderTexture; // make stamps 50% larger to better match the original stamp sizes @@ -61,10 +60,7 @@ public StampWidget() var resCache = IoCManager.Resolve(); var borderImage = resCache.GetResource( "/Textures/Interface/Paper/paper_stamp_border.svg.96dpi.png"); - _borderTexture = new StyleBoxTexture - { - Texture = borderImage, - }; + _borderTexture = new StyleBoxTexture { Texture = borderImage }; _borderTexture.SetPatchMargin(StyleBoxTexture.Margin.All, 7.0f); PanelOverride = _borderTexture; }