mirror of
https://github.com/godotengine/godot.git
synced 2024-11-21 11:32:13 +00:00
Ignore paste action if clipboard is empty
This commit is contained in:
parent
cb411fa960
commit
8437a05cc9
@ -7310,6 +7310,10 @@ void TextEdit::_paste_internal(int p_caret) {
|
||||
}
|
||||
|
||||
String clipboard = DisplayServer::get_singleton()->clipboard_get();
|
||||
if (clipboard.is_empty()) {
|
||||
// Nothing to paste.
|
||||
return;
|
||||
}
|
||||
|
||||
// Paste a full line. Ignore '\r' characters that may have been added to the clipboard by the OS.
|
||||
if (get_caret_count() == 1 && !has_selection(0) && !cut_copy_line.is_empty() && cut_copy_line == clipboard.replace("\r", "")) {
|
||||
|
Loading…
Reference in New Issue
Block a user