mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 03:17:28 +08:00
29 lines
782 B
C#
29 lines
782 B
C#
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
#nullable disable
|
|
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Sprites;
|
|
using osuTK;
|
|
|
|
namespace osu.Game.Graphics.UserInterface
|
|
{
|
|
public class BasicSearchTextBox : SearchTextBox
|
|
{
|
|
public BasicSearchTextBox()
|
|
{
|
|
Add(new SpriteIcon
|
|
{
|
|
Icon = FontAwesome.Solid.Search,
|
|
Origin = Anchor.CentreRight,
|
|
Anchor = Anchor.CentreRight,
|
|
Margin = new MarginPadding { Right = 10 },
|
|
Size = new Vector2(20),
|
|
});
|
|
|
|
TextFlow.Padding = new MarginPadding { Right = 35 };
|
|
}
|
|
}
|
|
}
|