diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2017-05-22 15:17:07 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-22 15:17:07 +0200 |
commit | ab938a930f865196983dc0554533f66bc71c43a1 (patch) | |
tree | 6f1939a7c5268e2d61a42494f949185cbe8b33f6 | |
parent | a6122ce68b8bde8213661cd98658be92cc12895a (diff) | |
parent | fab3c4308c8e5ed7b86992f4ae782d010f56baad (diff) |
Merge pull request #8863 from volzhs/editor-theme-new-node
Show description box on create new node window
-rw-r--r-- | editor/editor_help.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_help.cpp b/editor/editor_help.cpp index d550ce93d1..5c5fc7c3d4 100644 --- a/editor/editor_help.cpp +++ b/editor/editor_help.cpp @@ -1786,7 +1786,7 @@ void EditorHelpBit::_bind_methods() { void EditorHelpBit::_notification(int p_what) { if (p_what == NOTIFICATION_ENTER_TREE) { - add_style_override("panel", get_stylebox("normal", "TextEdit")); + add_style_override("panel", get_stylebox("ScriptPanel", "EditorStyles")); } } |