Merge pull request #45185 from KoBeWi/show_time!

Fix wrong signal in EditorPropertyColor
This commit is contained in:
Rémi Verschelde 2021-01-14 15:48:28 +01:00 committed by GitHub
commit 782a548ee3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1982,7 +1982,7 @@ EditorPropertyColor::EditorPropertyColor() {
picker->connect("color_changed", this, "_color_changed");
picker->connect("popup_closed", this, "_popup_closed");
picker->connect("picker_created", this, "_picker_created");
picker->get_popup()->connect("about_to_popup", this, "_picker_opening");
picker->get_popup()->connect("about_to_show", this, "_picker_opening");
}
////////////// NODE PATH //////////////////////