diff options
author | Michael Alexsander <michaelalexsander@protonmail.com> | 2021-08-22 16:47:11 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-22 16:47:11 +0000 |
commit | 2f8a58ad46868f07f2eb8db01d155164c0dc3a0b (patch) | |
tree | 4ff277fe11fcc597666aea8404f6defbd2ac5c68 /scene/gui/item_list.h | |
parent | e42628cd99f74d79643c443ddf531fc6755a0b9e (diff) | |
parent | 72e49eadecf1d4420e50d864bde449d14ccefd01 (diff) |
Merge pull request #51886 from Geometror/fix-layout-editor-file-dialog
Fix ItemList layout (+EditorFileDialog)
Diffstat (limited to 'scene/gui/item_list.h')
-rw-r--r-- | scene/gui/item_list.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scene/gui/item_list.h b/scene/gui/item_list.h index 86a0174a20..8a234398c3 100644 --- a/scene/gui/item_list.h +++ b/scene/gui/item_list.h @@ -95,6 +95,7 @@ private: SelectMode select_mode = SELECT_SINGLE; IconMode icon_mode = ICON_MODE_LEFT; VScrollBar *scroll_bar; + TextParagraph::OverrunBehavior text_overrun_behavior = TextParagraph::OVERRUN_NO_TRIMMING; uint64_t search_time_msec = 0; String search_string; @@ -182,6 +183,9 @@ public: void set_item_custom_fg_color(int p_idx, const Color &p_custom_fg_color); Color get_item_custom_fg_color(int p_idx) const; + void set_text_overrun_behavior(TextParagraph::OverrunBehavior p_behavior); + TextParagraph::OverrunBehavior get_text_overrun_behavior() const; + void select(int p_idx, bool p_single = true); void deselect(int p_idx); void deselect_all(); |