Implement EditorTextbox

This commit is contained in:
Andrei Zavatski
2020-02-11 20:08:24 +03:00
parent 482f622c94
commit 829152c8e8
2 changed files with 70 additions and 17 deletions

View File

@ -35,9 +35,11 @@ namespace osu.Game.Tests.Visual.UserInterface
private class TestCommentEditor : CommentEditor
{
protected override string EmptyTextboxText() => @"This textbox is empty";
protected override string FooterText => @"Footer text. And it is pretty long. Cool.";
protected override string FooterText() => @"Footer text. And it is pretty long. Cool.";
protected override string CommitButtonText => @"Commit";
protected override string TextboxPlaceholderText => @"This textbox is empty";
}
}
}