Remove unwanted spacings

This commit is contained in:
Andrei Zavatski
2019-08-30 10:22:49 +03:00
parent b03b520818
commit 71c844facd

View File

@ -10,6 +10,7 @@ using osu.Game.Online.API.Requests.Responses;
using osu.Game.Online.API.Requests; using osu.Game.Online.API.Requests;
using osu.Game.Online.Chat; using osu.Game.Online.Chat;
using System; using System;
using osuTK;
namespace osu.Game.Overlays.Profile.Sections.Kudosu namespace osu.Game.Overlays.Profile.Sections.Kudosu
{ {
@ -37,6 +38,7 @@ namespace osu.Game.Overlays.Profile.Sections.Kudosu
Anchor = Anchor.CentreLeft, Anchor = Anchor.CentreLeft,
Origin = Anchor.CentreLeft, Origin = Anchor.CentreLeft,
AutoSizeAxes = Axes.Both, AutoSizeAxes = Axes.Both,
Spacing = new Vector2(3),
}, },
date = new DrawableDate(historyItem.CreatedAt) date = new DrawableDate(historyItem.CreatedAt)
{ {
@ -57,7 +59,7 @@ namespace osu.Game.Overlays.Profile.Sections.Kudosu
if (!string.IsNullOrEmpty(prefix)) if (!string.IsNullOrEmpty(prefix))
{ {
linkFlowContainer.AddText(prefix); linkFlowContainer.AddText(prefix);
linkFlowContainer.AddText($@" {Math.Abs(historyItem.Amount)} kudosu", t => linkFlowContainer.AddText($@"{Math.Abs(historyItem.Amount)} kudosu", t =>
{ {
t.Font = t.Font.With(italics: true); t.Font = t.Font.With(italics: true);
t.Colour = colours.Blue; t.Colour = colours.Blue;
@ -75,40 +77,40 @@ namespace osu.Game.Overlays.Profile.Sections.Kudosu
switch (historyItem.Action) switch (historyItem.Action)
{ {
case KudosuAction.VoteGive: case KudosuAction.VoteGive:
return @" from obtaining votes in modding post of"; return @"from obtaining votes in modding post of";
case KudosuAction.Give: case KudosuAction.Give:
return $@" from {userLink()} for a post at"; return $@"from {userLink()} for a post at";
case KudosuAction.Reset: case KudosuAction.Reset:
return $@"Kudosu reset by {userLink()} for the post"; return $@"Kudosu reset by {userLink()} for the post";
case KudosuAction.VoteReset: case KudosuAction.VoteReset:
return @" from losing votes in modding post of"; return @"from losing votes in modding post of";
case KudosuAction.DenyKudosuReset: case KudosuAction.DenyKudosuReset:
return @" from modding post"; return @"from modding post";
case KudosuAction.Revoke: case KudosuAction.Revoke:
return $@"Denied kudosu by {userLink()} for the post"; return $@"Denied kudosu by {userLink()} for the post";
case KudosuAction.AllowKudosuGive: case KudosuAction.AllowKudosuGive:
return @" from kudosu deny repeal of modding post"; return @"from kudosu deny repeal of modding post";
case KudosuAction.DeleteReset: case KudosuAction.DeleteReset:
return @" from modding post deletion of"; return @"from modding post deletion of";
case KudosuAction.RestoreGive: case KudosuAction.RestoreGive:
return @" from modding post restoration of"; return @"from modding post restoration of";
case KudosuAction.RecalculateGive: case KudosuAction.RecalculateGive:
return @" from votes recalculation in modding post of"; return @"from votes recalculation in modding post of";
case KudosuAction.RecalculateReset: case KudosuAction.RecalculateReset:
return @" from votes recalculation in modding post of"; return @"from votes recalculation in modding post of";
default: default:
return @" from unknown event "; return @"from unknown event";
} }
} }