We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f9b4cd commit ac5440dCopy full SHA for ac5440d
osu.Framework/Graphics/UserInterface/BasicTextBox.cs
@@ -6,6 +6,7 @@
6
using osu.Framework.Graphics.Shapes;
7
using osu.Framework.Graphics.Sprites;
8
using osu.Framework.Input.Events;
9
+using osu.Framework.Text;
10
using osuTK;
11
using osuTK.Graphics;
12
@@ -93,7 +94,7 @@ protected override void OnFocus(FocusEvent e)
93
94
background.FadeColour(BackgroundFocused, 200, Easing.Out);
95
}
96
- protected override Drawable GetDrawableCharacter(char c) => new FallingDownContainer
97
+ protected override Drawable GetDrawableCharacter(Grapheme c) => new FallingDownContainer
98
{
99
AutoSizeAxes = Axes.Both,
100
Child = new SpriteText { Text = c.ToString(), Font = FrameworkFont.Condensed.With(size: FontSize) }
0 commit comments