Skip to content

Commit 0e04f76

Browse files
FrancescoC-unitysebastienlagarde
authored andcommitted
d Fix issue with the blue line of prefab modifications for Volume mode #860
1 parent 8c920f4 commit 0e04f76

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

com.unity.render-pipelines.core/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ The version number for this package has increased due to a version update of a r
2222
- Fixed null reference exception in LookDev when setting the SRP to one not implementing LookDev (case 1245086)
2323
- Fix LookDev's undo/redo on EnvironmentLibrary (case 1234725)
2424
- Fixed a wrong condition in CameraSwitcher, potentially causing out of bound exceptions.
25+
- Fixed issue with blue line in prefabs for volume mode.
2526

2627
## [8.0.1] - 2020-02-25
2728

com.unity.render-pipelines.core/Editor/Volume/VolumeEditor.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public override void OnInspectorGUI()
5959
EditorGUI.BeginProperty(lineRect, label, m_IsGlobal);
6060
{
6161
EditorGUI.BeginChangeCheck();
62-
isGlobal = EditorGUILayout.Popup(label, isGlobal, m_Modes);
62+
isGlobal = EditorGUI.Popup(lineRect, label, isGlobal, m_Modes);
6363
if (EditorGUI.EndChangeCheck())
6464
m_IsGlobal.boolValue = isGlobal == 0;
6565
}

0 commit comments

Comments
 (0)