1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-09 12:50:35 +00:00

-Improved theme editor, when a new class is added, the members are created empty, closes #4619

-Made theme editor take less vertical space by using a scroll area
This commit is contained in:
Juan Linietsky
2016-06-20 11:33:51 -03:00
parent 0e07f49a03
commit a1e32a6f7d
2 changed files with 50 additions and 36 deletions

View File

@@ -35,16 +35,19 @@
#include "scene/gui/file_dialog.h"
#include "scene/gui/check_box.h"
#include "scene/gui/button_group.h"
#include "scene/gui/scroll_container.h"
#include "tools/editor/editor_node.h"
class ThemeEditor : public Control {
OBJ_TYPE( ThemeEditor, Control );
ScrollContainer *scroll;
VBoxContainer *main_vb;
Ref<Theme> theme;