summaryrefslogtreecommitdiffstats
path: root/editor/code_editor.cpp
diff options
context:
space:
mode:
authorHaoyu Qiu <timothyqiu32@gmail.com>2024-04-16 17:34:01 +0800
committerHaoyu Qiu <timothyqiu32@gmail.com>2024-09-14 09:39:36 +0800
commit504e0656bb7d530204ce7deb20075b6569846d50 (patch)
tree726b13f70c13c531b9e39797eb9a163384ecc9c5 /editor/code_editor.cpp
parent74de05a01c8716a42d4e3427f607d7bea76b35e5 (diff)
downloadredot-engine-504e0656bb7d530204ce7deb20075b6569846d50.tar.gz
Add TextEdit option to prevent copying without a selection
Diffstat (limited to 'editor/code_editor.cpp')
-rw-r--r--editor/code_editor.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/editor/code_editor.cpp b/editor/code_editor.cpp
index dd8aa523c4..7d895ce519 100644
--- a/editor/code_editor.cpp
+++ b/editor/code_editor.cpp
@@ -1068,6 +1068,9 @@ void CodeTextEditor::update_editor_settings() {
text_editor->set_draw_spaces(EDITOR_GET("text_editor/appearance/whitespace/draw_spaces"));
text_editor->add_theme_constant_override("line_spacing", EDITOR_GET("text_editor/appearance/whitespace/line_spacing"));
+ // Behavior: General
+ text_editor->set_empty_selection_clipboard_enabled(EDITOR_GET("text_editor/behavior/general/empty_selection_clipboard"));
+
// Behavior: Navigation
text_editor->set_scroll_past_end_of_file_enabled(EDITOR_GET("text_editor/behavior/navigation/scroll_past_end_of_file"));
text_editor->set_smooth_scroll_enabled(EDITOR_GET("text_editor/behavior/navigation/smooth_scrolling"));