Skip to content
This repository was archived by the owner on Aug 31, 2021. It is now read-only.

Commit 7321808

Browse files
Merge pull request #7130 from livecodepanos/bugfix-22241
[22241] Fix error when getting the android field's scrollingEnabled
2 parents 8759ad0 + a5706c9 commit 7321808

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

extensions/widgets/androidfield/androidfield.lcb

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1771,9 +1771,8 @@ end handler
17711771

17721772
public handler GetScrollingEnabled() returns Boolean
17731773
if mNativeObj is not nothing then
1774-
put TextView_getMovementMethod(mNativeObj) into mScrollingEnabled
1774+
put (TextView_getMovementMethod(mNativeObj) is not nothing) into mScrollingEnabled
17751775
end if
1776-
17771776
return mScrollingEnabled
17781777
end handler
17791778

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# [22241] Ensure getting the scrollingEnabled of the native android field does not throw an error

0 commit comments

Comments
 (0)