Search Issue Tracker
Won't Fix
Votes
1
Found in
2018.3.0a6
2018.3.0f2
2019.1.0a1
Issue ID
1112654
Regression
No
EditorGUILayout.EnumPopup doesn't save changes from prefab edit mode when Undo.RecordObject is disabled
Steps to reproduce:
1. Open the original project "PrefabsBug.Unity.zip"
2. Go to Project window Assets->Prefabs
3. Double click on the "Test Target"
4. In the Inspector disable Undo.RecordObject by pressing on the green button
5. Expand "Sample Enum" and select any given option
6. Exit Prefab edit mode
7. Go back to Prefab edit mode and notice how Sample Enum value was not saved
Expected results: EnumPopup value changes are saved in Prefab edit mode
Actual results: EnumPopup value changes are not saved in Prefab edit mode
Reproducible with: 2018.3.0a6, 2018.3.2f1, 2019.1.0a13
Note: Improved prefabs were introduced in 2018.3.0a6
Add comment
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- “Default Scene” dropdown field contains a spelling mistake “Default Builtin”
- Editor crashes on PPtr<Mesh> after adding Text Mesh and Cloth Components to the same GameObject
- Previously deleted “DefaultLookDevProfile“ is present when upgrading the Editor version
- [Ubuntu] UI text and buttons are missing spaces in Unity Version Control > New Workspace window
- "Inherit attribute is not supported" warning is shown but attributes are available in VFX Graph Output and Update blocks
Resolution Note (2019.2.X):
The reason this does not work is because the user is not marking the scene dirty, nor is he marking the object that is changed dirty. He needs to at least do one of those.
I changed the inspector script to look like this and now it works
EditorGUI.BeginChangeCheck();
_src.sampleEnum = (TextAnchor)EditorGUILayout.EnumPopup("Sample Enum", _src.sampleEnum);
if (EditorGUI.EndChangeCheck())
EditorUtility.SetDirty(_src);