Skip to content

Commit

Permalink
Merge branch 'release/v10.3.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
dhq-boiler committed Feb 21, 2023
2 parents 9abab27 + ee6e920 commit 4b43f46
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
6 changes: 6 additions & 0 deletions ReleaseNote.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@

# リリースノート

## v10.3.1

### バグフィックス

* データの循環参照による問題を修正しました。

## v10.3

### バグフィックス
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,8 @@ public string ShowPropertiesAndFields()
foreach (var property in properties.Except(new[]
{
GetType().GetProperty("Parent"),
GetType().GetProperty("SelectedItems")
GetType().GetProperty("SelectedItems"),
GetType().GetProperty("LayerItem"),
}))
ret += $"{property.Name}={property.GetValue(this)},";

Expand Down

0 comments on commit 4b43f46

Please sign in to comment.