1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-18 14:21:41 +00:00

Add "panel" style to PopupDialog

This commit is contained in:
Michael Alexsander
2019-10-27 19:45:03 -03:00
parent 816341af25
commit d92123ed97
4 changed files with 16 additions and 4 deletions

View File

@@ -356,7 +356,7 @@ void PopupDialog::_notification(int p_what) {
if (p_what == NOTIFICATION_DRAW) {
RID ci = get_canvas_item();
get_stylebox("panel", "PopupMenu")->draw(ci, Rect2(Point2(), get_size()));
get_stylebox("panel")->draw(ci, Rect2(Point2(), get_size()));
}
}