aboutsummaryrefslogtreecommitdiff
path: root/scene/gui/tree.cpp
diff options
context:
space:
mode:
authorRémi Verschelde2018-02-17 16:19:50 +0100
committerGitHub2018-02-17 16:19:50 +0100
commitd05d4c2bddff05967c8d59137e5c13b576f7cb51 (patch)
tree373b6abb4e4a15befea66446841c16ce5541535b /scene/gui/tree.cpp
parent3d4bf5a90e9b32c6c93647c7fa08785b22cd5442 (diff)
parentd35e48622800f6686dbdfba380e25170005dcc2b (diff)
downloadgodot-d05d4c2bddff05967c8d59137e5c13b576f7cb51.tar.gz
godot-d05d4c2bddff05967c8d59137e5c13b576f7cb51.tar.zst
godot-d05d4c2bddff05967c8d59137e5c13b576f7cb51.zip
Merge pull request #16776 from sudoio/remove-bad-words
Clean up some bad words from code comments
Diffstat (limited to '')
-rw-r--r--scene/gui/tree.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/scene/gui/tree.cpp b/scene/gui/tree.cpp
index e12044fca..cdbdc9b0d 100644
--- a/scene/gui/tree.cpp
+++ b/scene/gui/tree.cpp
@@ -2384,7 +2384,7 @@ void Tree::_gui_input(Ref<InputEvent> p_event) {
if (mm.is_valid()) {
- if (cache.font.is_null()) // avoid a strange case that may fuckup stuff
+ if (cache.font.is_null()) // avoid a strange case that may corrupt stuff
update_cache();
Ref<StyleBox> bg = cache.bg;
@@ -2483,7 +2483,7 @@ void Tree::_gui_input(Ref<InputEvent> p_event) {
Ref<InputEventMouseButton> b = p_event;
if (b.is_valid()) {
- if (cache.font.is_null()) // avoid a strange case that may fuckup stuff
+ if (cache.font.is_null()) // avoid a strange case that may corrupt stuff
update_cache();
if (!b->is_pressed()) {