We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe2a6b6 commit 0abdc34Copy full SHA for 0abdc34
1 file changed
src/qml/filters/richtext/vui.qml
@@ -1,5 +1,5 @@
1
/*
2
- * Copyright (c) 2020-2024 Meltytech, LLC
+ * Copyright (c) 2020-2025 Meltytech, LLC
3
*
4
* This program is free software: you can redistribute it and/or modify
5
* it under the terms of the GNU General Public License as published by
@@ -542,11 +542,11 @@ Shotcut.VuiBase {
542
document.pastePlain();
543
}
544
onDeleteTriggered: {
545
- textArea.remove(control.selectionStart, control.selectionEnd);
+ textArea.remove(document.selectionStart, document.selectionEnd);
546
547
onClearTriggered: {
548
textArea.selectAll();
549
550
551
onSelectAllTriggered: {
552
0 commit comments