diff options
author | Artem Varaksa <aymfst@gmail.com> | 2018-02-17 16:00:39 +0300 |
---|---|---|
committer | Artem Varaksa <aymfst@gmail.com> | 2018-02-17 16:00:39 +0300 |
commit | d35e48622800f6686dbdfba380e25170005dcc2b (patch) | |
tree | 373b6abb4e4a15befea66446841c16ce5541535b /scene/gui | |
parent | 3d4bf5a90e9b32c6c93647c7fa08785b22cd5442 (diff) |
Clean up some bad words from code comments
Diffstat (limited to 'scene/gui')
-rw-r--r-- | scene/gui/tree.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scene/gui/tree.cpp b/scene/gui/tree.cpp index e12044fca2..cdbdc9b0d7 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()) { |