diff options
author | Michael Alexsander <michaelalexsander@protonmail.com> | 2019-10-27 19:45:03 -0300 |
---|---|---|
committer | Michael Alexsander <michaelalexsander@protonmail.com> | 2019-10-27 19:45:03 -0300 |
commit | d92123ed978ab3599baec0db76c42cfa8f8e2bcd (patch) | |
tree | af84aebbb70ef670f29d02cb25da08185e9f324f /scene/gui/dialogs.cpp | |
parent | 816341af25749e3c2ee1fad370c0c5785293f5b6 (diff) | |
download | redot-engine-d92123ed978ab3599baec0db76c42cfa8f8e2bcd.tar.gz |
Add "panel" style to PopupDialog
Diffstat (limited to 'scene/gui/dialogs.cpp')
-rw-r--r-- | scene/gui/dialogs.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/gui/dialogs.cpp b/scene/gui/dialogs.cpp index 31551d6257..062089d80b 100644 --- a/scene/gui/dialogs.cpp +++ b/scene/gui/dialogs.cpp @@ -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())); } } |