Rename HTextArea.append() → .insertAtCursor()
This commit is contained in:
parent
877290fc00
commit
8b9681dc78
|
@ -20,7 +20,7 @@ TextArea {
|
||||||
|
|
||||||
|
|
||||||
function reset() { clear(); text = defaultText }
|
function reset() { clear(); text = defaultText }
|
||||||
function append(text) { insert(cursorPosition, text) }
|
function insertAtCursor(text) { insert(cursorPosition, text) }
|
||||||
|
|
||||||
|
|
||||||
text: defaultText
|
text: defaultText
|
||||||
|
|
|
@ -75,7 +75,7 @@ HTextArea {
|
||||||
}
|
}
|
||||||
|
|
||||||
const add = indent.repeat(indents)
|
const add = indent.repeat(indents)
|
||||||
textArea.append("\n" + add)
|
textArea.insertAtCursor("\n" + add)
|
||||||
}
|
}
|
||||||
|
|
||||||
function sendText() {
|
function sendText() {
|
||||||
|
@ -176,7 +176,7 @@ HTextArea {
|
||||||
|
|
||||||
Keys.onTabPressed: ev => {
|
Keys.onTabPressed: ev => {
|
||||||
ev.accepted = true
|
ev.accepted = true
|
||||||
textArea.append(indent)
|
textArea.insertAtCursor(indent)
|
||||||
}
|
}
|
||||||
|
|
||||||
Keys.onPressed: ev => {
|
Keys.onPressed: ev => {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user