diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2019-10-28 12:54:03 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-28 12:54:03 +0100 |
commit | aaa9751de3ef6b39217113aa26f018b25d5878e8 (patch) | |
tree | 862933a0c2abd953f3798ed22b436b1bf3f68a75 /scene/gui | |
parent | 5014baf34be94d5dbfaf80e778c1b90c8998340f (diff) | |
parent | d92123ed978ab3599baec0db76c42cfa8f8e2bcd (diff) |
Merge pull request #33120 from YeldhamDev/popup_dialog_panel_style
Add "panel" style to PopupDialog
Diffstat (limited to 'scene/gui')
-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())); } } |