From d061f569514738c491b10119d27e6de3bd66f025 Mon Sep 17 00:00:00 2001 From: Riley Testut Date: Fri, 12 Aug 2022 19:37:26 -0500 Subject: [PATCH] [iPad] Fixes keyboard controller not appearing when selecting buttons to hold --- Delta/Emulation/GameViewController.swift | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Delta/Emulation/GameViewController.swift b/Delta/Emulation/GameViewController.swift index 93c909f..1e8d474 100644 --- a/Delta/Emulation/GameViewController.swift +++ b/Delta/Emulation/GameViewController.swift @@ -955,6 +955,8 @@ private extension GameViewController UIView.animate(withDuration: 0.4) { self.sustainButtonsBlurView.effect = blurEffect self.sustainButtonsBackgroundView.alpha = 1.0 + } completion: { _ in + self.controllerView.becomeFirstResponder() } }