Update comments; Improve neighboring builds handling;

Apply fixes to things pointed out by AppVeyor
This commit is contained in:
HoutarouOreki
2018-07-20 15:48:20 +02:00
parent 227394925a
commit 02a8fb2154
9 changed files with 37 additions and 49 deletions

View File

@ -5,16 +5,13 @@ using OpenTK;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Cursor;
using osu.Framework.Graphics.Shapes;
using osu.Framework.Input;
using osu.Game.Graphics.Containers;
using System;
namespace osu.Game.Graphics.UserInterface
{
public class TooltipIconButton : OsuClickableContainer, IHasTooltip
{
private readonly SpriteIcon icon;
public Action OnPressed;
public FontAwesome Icon
{
@ -40,12 +37,6 @@ namespace osu.Game.Graphics.UserInterface
};
}
protected override bool OnClick(InputState state)
{
OnPressed?.Invoke();
return base.OnClick(state);
}
public string TooltipText { get; set; }
}
}