invert usage corresponding to previous description change

This commit is contained in:
Unknown
2019-07-05 09:16:50 +02:00
parent ee44caf964
commit d05512a12a
2 changed files with 8 additions and 11 deletions

View File

@ -112,10 +112,10 @@ namespace osu.Game.Tests.Visual.Gameplay
AddUntilStep("wait for graph", () => graph.CreationCount == 1);
AddStep("start", clock.Start);
AddStep("show bar", () => progress.AllowSeeking.Value = true);
AddStep("hide graph", () => progress.CollapseGraph.Value = true);
AddStep("hide graph", () => progress.ShowGraph.Value = false);
AddStep("hide Bar", () => progress.AllowSeeking.Value = false);
AddStep("show bar", () => progress.AllowSeeking.Value = true);
AddStep("show graph", () => progress.CollapseGraph.Value = false);
AddStep("show graph", () => progress.ShowGraph.Value = true);
AddStep("stop", clock.Stop);
}