mirror of
https://github.com/ppy/osu.git
synced 2024-12-15 10:33:01 +08:00
Fix left and right arrows keys in chat overlay not working
Misplaced override. Resolves ppy/osu-framework#1444
This commit is contained in:
parent
a6460832f4
commit
90828cca8f
@ -18,8 +18,6 @@ namespace osu.Game.Graphics.UserInterface
|
|||||||
|
|
||||||
public Action Exit;
|
public Action Exit;
|
||||||
|
|
||||||
public override bool HandleLeftRightArrows => false;
|
|
||||||
|
|
||||||
private bool focus;
|
private bool focus;
|
||||||
public bool HoldFocus
|
public bool HoldFocus
|
||||||
{
|
{
|
||||||
|
@ -12,6 +12,8 @@ namespace osu.Game.Graphics.UserInterface
|
|||||||
{
|
{
|
||||||
protected virtual bool AllowCommit => false;
|
protected virtual bool AllowCommit => false;
|
||||||
|
|
||||||
|
public override bool HandleLeftRightArrows => false;
|
||||||
|
|
||||||
public SearchTextBox()
|
public SearchTextBox()
|
||||||
{
|
{
|
||||||
Height = 35;
|
Height = 35;
|
||||||
|
Loading…
Reference in New Issue
Block a user