Automatically focus divisor textbox and hide popover after successful change

This commit is contained in:
Dean Herbert
2022-02-28 15:21:01 +09:00
parent a1786f62d7
commit 3634e12e66
2 changed files with 5 additions and 4 deletions

View File

@ -190,10 +190,6 @@ namespace osu.Game.Tests.Visual.Editing
textBox.Text = divisor.ToString();
InputManager.Key(Key.Enter);
});
AddStep("dismiss popover", () =>
{
InputManager.Key(Key.Escape);
});
AddUntilStep("wait for dismiss", () => !this.ChildrenOfType<BeatDivisorControl.CustomDivisorPopover>().Any());
}
}