aboutsummaryrefslogtreecommitdiff
path: root/editor/editor_about.h
diff options
context:
space:
mode:
authorPoommetee Ketson2017-11-27 22:51:12 +0700
committerPoommetee Ketson2017-11-27 23:27:43 +0700
commit499e1b7a8083b2853ef25300e77717780320111d (patch)
tree619c275830ef651e3f78e78015a59f8e34efe79b /editor/editor_about.h
parentd992eb1b25e3612293d6c72cd462a99cd5a0e4a3 (diff)
downloadgodot-499e1b7a8083b2853ef25300e77717780320111d.tar.gz
godot-499e1b7a8083b2853ef25300e77717780320111d.tar.zst
godot-499e1b7a8083b2853ef25300e77717780320111d.zip
EditorAbout: single-column'd some section, monospace
- Show ItemLists in single column if not enough item, or is a special section (Gold/Platinum sponsors) - Add a space before and after names so that it looks a bit better for long names adjacent to another - License text in monospace
Diffstat (limited to 'editor/editor_about.h')
-rw-r--r--editor/editor_about.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/editor/editor_about.h b/editor/editor_about.h
index d455b1f07..ce29027f0 100644
--- a/editor/editor_about.h
+++ b/editor/editor_about.h
@@ -52,13 +52,15 @@ class EditorAbout : public AcceptDialog {
private:
void _license_tree_selected();
- ScrollContainer *_populate_list(const String &p_name, const List<String> &p_sections, const char **p_src[]);
+ ScrollContainer *_populate_list(const String &p_name, const List<String> &p_sections, const char **p_src[], const int p_flag_single_column = 0);
Tree *_tpl_tree;
+ TextEdit *_license_text;
TextEdit *_tpl_text;
TextureRect *_logo;
protected:
+ void _notification(int p_what);
static void _bind_methods();
public: