Skip to content

Commit 762041f

Browse files
committed
fixes
1 parent 6f0f3d2 commit 762041f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/kotlin/org/nield/dirtyfx/collections/DirtyObservableList.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class DirtyObservableList<T> private constructor(_originalList: List<T> = listOf
3333
addListener(
3434
WeakListChangeListener<T> (
3535
ListChangeListener<T> { _ ->
36-
_isDirtyProperty.set(originalList != this)
36+
_isDirtyProperty.set(_originalList != this)
3737
}
3838
)
3939
)

0 commit comments

Comments
 (0)