Skip to content

Commit

Permalink
Merge pull request #299 from anatawa12/fix-error-window-reflesh
Browse files Browse the repository at this point in the history
fix: Error report window may not refreshed
  • Loading branch information
anatawa12 authored Aug 9, 2023
2 parents 48e2421 + 6fd3a66 commit 2aaefd3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG-PRERELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ The format is based on [Keep a Changelog].
- UnusedBonesByReferenceTool error with SMR without mesh `#280`
- MergeSkinnedMesh doesn't work well with eyelids `#284`
- Animating Behaviour.m_Enabled not working `#287`
- Error Report Window may not refreshed after build error `#299`

### Security

Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ The format is based on [Keep a Changelog].
- UnusedBonesByReferenceTool error with SMR without mesh `#280`
- MergeSkinnedMesh doesn't work well with eyelids `#284`
- Animating Behaviour.m_Enabled not working `#287`
- Error Report Window may not refreshed after build error `#299`

### Security

Expand Down
2 changes: 1 addition & 1 deletion Internal/ErrorReporter/Editor/ErrorReportUI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ public void UpdateList(
Add(new Label("Error report for "));
Add(_field);

if (oldValue != value) SelectionChanged?.Invoke(value);
if (oldValue != value || setValue != null) SelectionChanged?.Invoke(value);
}
MarkDirtyRepaint();
}
Expand Down

0 comments on commit 2aaefd3

Please sign in to comment.