Merge pull request #18348 from rfht/master

fix clang6 assignment error
This commit is contained in:
Rémi Verschelde 2018-05-01 09:31:29 +02:00 committed by GitHub
commit 204de5e6dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -867,9 +867,9 @@ void RichTextLabel::_gui_input(Ref<InputEvent> p_event) {
// Erase previous selection.
if (selection.active) {
selection.from = NULL;
selection.from_char = NULL;
selection.from_char = '\0';
selection.to = NULL;
selection.to_char = NULL;
selection.to_char = '\0';
selection.active = false;
update();