1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-13 13:31:48 +00:00

Fix EditorPropertyResource focus outline being drawn behind the preview

(cherry picked from commit 0b47f1be8c)
This commit is contained in:
Hugo Locurcio
2021-05-09 13:11:16 +02:00
committed by Rémi Verschelde
parent 6c1c2ed414
commit 9f31877e15

View File

@@ -2922,6 +2922,8 @@ EditorPropertyResource::EditorPropertyResource() {
preview->set_margin(MARGIN_TOP, 1); preview->set_margin(MARGIN_TOP, 1);
preview->set_margin(MARGIN_BOTTOM, -1); preview->set_margin(MARGIN_BOTTOM, -1);
preview->set_margin(MARGIN_RIGHT, -1); preview->set_margin(MARGIN_RIGHT, -1);
// This is required to draw the focus outline in front of the preview, rather than behind.
preview->set_draw_behind_parent(true);
assign->add_child(preview); assign->add_child(preview);
assign->connect("gui_input", this, "_button_input"); assign->connect("gui_input", this, "_button_input");