/// <summary>
 /// Applied after OnKeyDown runs.
 /// </summary>
 internal static void Postfix(KButtonEvent e)
 {
     if (inGameSettings != null && !e.Consumed && e.TryConsume(inGameSettings.
                                                               GetKAction()))
     {
         POptions.ShowDialog(typeof(ToastControlOptions), onClose: (_) =>
                             ToastControlPopups.ReloadOptions());
     }
 }