We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f0f3d2 commit 762041fCopy full SHA for 762041f
src/main/kotlin/org/nield/dirtyfx/collections/DirtyObservableList.kt
@@ -33,7 +33,7 @@ class DirtyObservableList<T> private constructor(_originalList: List<T> = listOf
33
addListener(
34
WeakListChangeListener<T> (
35
ListChangeListener<T> { _ ->
36
- _isDirtyProperty.set(originalList != this)
+ _isDirtyProperty.set(_originalList != this)
37
}
38
)
39
0 commit comments