- [GUI] Remember last selected CABMap if exists.

- [GUI] Only apply UnityCN key changes if game is selected.
This commit is contained in:
Razmoth
2023-08-13 19:20:54 +04:00
parent 463f992450
commit 6da2387c8c
6 changed files with 54 additions and 5 deletions

View File

@@ -453,5 +453,17 @@ namespace AssetStudioGUI.Properties {
this["selectedUnityCNKey"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("")]
public string selectedCABMapName {
get {
return ((string)(this["selectedCABMapName"]));
}
set {
this["selectedCABMapName"] = value;
}
}
}
}