Disable ability to copy or cut text from LineEdit if secret mode is enabled.
This commit is contained in:
parent
34e58fd831
commit
7aca4c32e2
1 changed files with 2 additions and 3 deletions
|
@ -866,15 +866,14 @@ void LineEdit::_notification(int p_what) {
|
|||
|
||||
void LineEdit::copy_text() {
|
||||
|
||||
if (selection.enabled) {
|
||||
|
||||
if (selection.enabled && !pass) {
|
||||
OS::get_singleton()->set_clipboard(text.substr(selection.begin, selection.end - selection.begin));
|
||||
}
|
||||
}
|
||||
|
||||
void LineEdit::cut_text() {
|
||||
|
||||
if (selection.enabled) {
|
||||
if (selection.enabled && !pass) {
|
||||
OS::get_singleton()->set_clipboard(text.substr(selection.begin, selection.end - selection.begin));
|
||||
selection_delete();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue