From f202aee2a910005c400f932e34f6b4f85151b6dd Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Sat, 29 Apr 2017 16:59:23 +0900 Subject: [PATCH 1/2] Fix input not being propagated to the playfield when outside its bounds. --- osu.Game/Rulesets/UI/Playfield.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/osu.Game/Rulesets/UI/Playfield.cs b/osu.Game/Rulesets/UI/Playfield.cs index 44d15e42c4..0586c0385a 100644 --- a/osu.Game/Rulesets/UI/Playfield.cs +++ b/osu.Game/Rulesets/UI/Playfield.cs @@ -50,6 +50,7 @@ namespace osu.Game.Rulesets.UI { content = new Container { + AlwaysReceiveInput = true, RelativeSizeAxes = Axes.Both, } } From 6b08f485b4889daa89b5631475f69b6591a833b5 Mon Sep 17 00:00:00 2001 From: Jorolf Date: Sun, 30 Apr 2017 14:45:23 +0200 Subject: [PATCH 2/2] fix typo --- osu.Game/Online/API/Requests/GetBeatmapDetailsRequest.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/osu.Game/Online/API/Requests/GetBeatmapDetailsRequest.cs b/osu.Game/Online/API/Requests/GetBeatmapDetailsRequest.cs index 43e14e59de..a529dde592 100644 --- a/osu.Game/Online/API/Requests/GetBeatmapDetailsRequest.cs +++ b/osu.Game/Online/API/Requests/GetBeatmapDetailsRequest.cs @@ -6,7 +6,7 @@ using osu.Game.Database; namespace osu.Game.Online.API.Requests { - public class GetBeatmapDetailsRequest : APIRequest + public class GetBeatmapDetailsRequest : APIRequest { private readonly BeatmapInfo beatmap; @@ -20,7 +20,7 @@ namespace osu.Game.Online.API.Requests protected override string Target => $@"beatmaps/{lookupString}"; } - public class GetBeatmapDeatilsResponse : BeatmapMetrics + public class GetBeatmapDetailsResponse : BeatmapMetrics { //the online API returns some metrics as a nested object. [JsonProperty(@"failtimes")]