mirror of
https://github.com/osukey/osukey.git
synced 2025-08-04 23:24:04 +09:00
various fixes
- make AllowSeeking a Bindable which fixes incorrect initial position and removes unnecessary variables - make SongProgressInfo fixed height
This commit is contained in:
@ -111,10 +111,10 @@ namespace osu.Game.Tests.Visual.Gameplay
|
||||
AddStep("display max values", displayMaxValues);
|
||||
AddUntilStep("wait for graph", () => graph.CreationCount == 1);
|
||||
AddStep("start", clock.Start);
|
||||
AddStep("show bar", () => progress.AllowSeeking = true);
|
||||
AddStep("show bar", () => progress.AllowSeeking.Value = true);
|
||||
AddStep("hide graph", () => progress.CollapseGraph.Value = true);
|
||||
AddStep("hide Bar", () => progress.AllowSeeking = false);
|
||||
AddStep("show bar", () => progress.AllowSeeking = true);
|
||||
AddStep("hide Bar", () => progress.AllowSeeking.Value = false);
|
||||
AddStep("show bar", () => progress.AllowSeeking.Value = true);
|
||||
AddStep("show graph", () => progress.CollapseGraph.Value = false);
|
||||
AddStep("stop", clock.Stop);
|
||||
}
|
||||
|
Reference in New Issue
Block a user