Apply changes in line with framework event logic update

This commit is contained in:
Dean Herbert
2020-10-01 12:51:33 +09:00
parent 10ae93cc2e
commit 61e62929ee
5 changed files with 8 additions and 5 deletions

View File

@ -59,12 +59,13 @@ namespace osu.Game.Online.Chat
RelativeSizeAxes = Axes.X,
Height = textbox_height,
PlaceholderText = "type your message",
OnCommit = postMessage,
ReleaseFocusOnCommit = false,
HoldFocus = true,
Anchor = Anchor.BottomLeft,
Origin = Anchor.BottomLeft,
});
textbox.OnCommit += postMessage;
}
Channel.BindValueChanged(channelChanged);