1
0
forked from Clones/Controlify

🐛 Prevent disabling controller when pressing 'Maybe Later' on the calibration screen if the controller is already calibrated.

This commit is contained in:
isXander
2023-07-27 20:23:43 +01:00
parent 276cdff132
commit 33bc4bdee4

View File

@ -196,9 +196,12 @@ public class ControllerCalibrationScreen extends Screen {
private void onLaterButtonPress() {
if (!calibrated) {
if (!controller.config().deadzonesCalibrated) {
controller.config().delayedCalibration = true;
Controlify.instance().config().setDirty();
Controlify.instance().setCurrentController(null);
}
onClose();
}
}