Skip to content

Commit 1b70838

Browse files
committed
More clear parameter name
1 parent 9577c1f commit 1b70838

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

aztec/src/main/kotlin/org/wordpress/aztec/AztecText.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1249,11 +1249,11 @@ open class AztecText : AppCompatEditText, TextWatcher, UnknownHtmlSpan.OnUnknown
12491249
refreshText(true)
12501250
}
12511251

1252-
open fun refreshText(keepFocus: Boolean) {
1252+
open fun refreshText(stealEditorFocus: Boolean) {
12531253
disableTextChangedListener()
12541254
val selStart = selectionStart
12551255
val selEnd = selectionEnd
1256-
if (keepFocus) {
1256+
if (stealEditorFocus) {
12571257
setFocusOnParentView()
12581258
}
12591259
text = editableText

0 commit comments

Comments
 (0)