mirror of
https://github.com/osukey/osukey.git
synced 2025-08-08 00:53:56 +09:00
Add missing null check
This commit is contained in:
@ -540,7 +540,8 @@ namespace osu.Game.Overlays.Settings.Sections.Input
|
|||||||
{
|
{
|
||||||
base.Dispose(isDisposing);
|
base.Dispose(isDisposing);
|
||||||
|
|
||||||
keyCombinationProvider.KeymapChanged -= updateKeyCombinationText;
|
if (keyCombinationProvider != null)
|
||||||
|
keyCombinationProvider.KeymapChanged -= updateKeyCombinationText;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user