From 5ea0ffe83e7cc8e35f95234faa31f323a9b6ba45 Mon Sep 17 00:00:00 2001 From: Verkister Date: Sat, 4 Nov 2017 14:48:27 +0200 Subject: [PATCH] Evens out the spacing and lines the bottom with the background tiling --- code/modules/client/preferences_vr.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/client/preferences_vr.dm b/code/modules/client/preferences_vr.dm index aa285834d23..5c4ba8f3c68 100644 --- a/code/modules/client/preferences_vr.dm +++ b/code/modules/client/preferences_vr.dm @@ -12,16 +12,16 @@ mannequin.dir = NORTH var/icon/stamp = getFlatIcon(mannequin) stamp.Scale(stamp.Width()*size_multiplier,stamp.Height()*size_multiplier) - preview_icon.Blend(stamp, ICON_OVERLAY, 67-stamp.Width()/2, 4) + preview_icon.Blend(stamp, ICON_OVERLAY, 65-stamp.Width()/2, 5) mannequin.dir = WEST stamp = getFlatIcon(mannequin) stamp.Scale(stamp.Width()*size_multiplier,stamp.Height()*size_multiplier) - preview_icon.Blend(stamp, ICON_OVERLAY, 17-stamp.Width()/2, 4) + preview_icon.Blend(stamp, ICON_OVERLAY, 15-stamp.Width()/2, 5) mannequin.dir = SOUTH stamp = getFlatIcon(mannequin) stamp.Scale(stamp.Width()*size_multiplier,stamp.Height()*size_multiplier) - preview_icon.Blend(stamp, ICON_OVERLAY, 99-stamp.Width()/2, 4) + preview_icon.Blend(stamp, ICON_OVERLAY, 115-stamp.Width()/2, 5) preview_icon.Scale(preview_icon.Width() * 2, preview_icon.Height() * 2) // Scaling here to prevent blurring in the browser. \ No newline at end of file