mirror of
https://github.com/osukey/osukey.git
synced 2025-07-01 16:29:58 +09:00
Move target field outside of Run
usage
Co-authored-by: Salman Ahmed <frenzibyte@gmail.com>
This commit is contained in:
@ -36,7 +36,7 @@ namespace osu.Game.Overlays.Settings.Sections.Input
|
||||
|
||||
List<RealmKeyBinding> bindings = null;
|
||||
|
||||
realmFactory.Run(realm => bindings = realm.All<RealmKeyBinding>().Where(b => b.RulesetName == rulesetName && b.Variant == variant).Detach());
|
||||
bindings = realmFactory.Run(realm => realm.All<RealmKeyBinding>().Where(b => b.RulesetName == rulesetName && b.Variant == variant).Detach());
|
||||
|
||||
foreach (var defaultGroup in Defaults.GroupBy(d => d.Action))
|
||||
{
|
||||
|
Reference in New Issue
Block a user