capacitor-dex-editor 0.0.45 → 0.0.46
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1527,7 +1527,9 @@ public class EditView extends View {
|
|
|
1527
1527
|
// Call this method whenever the text content changes
|
|
1528
1528
|
public void onTextChanged() {
|
|
1529
1529
|
clearSyntaxCache(); // keep cache fresh
|
|
1530
|
-
mTextListener
|
|
1530
|
+
if (mTextListener != null) {
|
|
1531
|
+
mTextListener.onTextChanged();
|
|
1532
|
+
}
|
|
1531
1533
|
}
|
|
1532
1534
|
|
|
1533
1535
|
// ---------- Insert / Delete with handling ----------
|