Fixes #4120. ConfigurationEditor is handle No button the same as Cancel button (#4121)

This commit is contained in:
BDisp
2025-06-03 02:22:34 +01:00
committed by GitHub
parent 38c1182a6f
commit 7490ac9776

View File

@@ -168,7 +168,9 @@ public class ConfigurationEditor : Scenario
break;
default:
case 1:
// user decided not save changes
break;
case -1 or 2:
// user cancelled
return;