summaryrefslogtreecommitdiff
path: root/scene/gui
AgeCommit message (Collapse)Author
2022-09-21Merge pull request #66213 from KoBeWi/not_right_but_works™Rémi Verschelde
Remove duplicate code in ItemList
2022-09-21Remove duplicate code in ItemListkobewi
2022-09-21Tree recursive foldingNinni Pipping
2022-09-21Merge pull request #66126 from RedMser/shortcut-context-inspectorRémi Verschelde
Fix editing `shortcut_context` in inspector
2022-09-19Merge pull request #66068 from bruvzg/rtl_fx_connectedRémi Verschelde
[RTL] Add option to apply built-in effects to the individual connected glyphs.
2022-09-19Merge pull request #66112 from Zylann/get_configuration_warnings_psaRémi Verschelde
Change return type of `get_configuration_warnings` to `PackedStringArray`
2022-09-19Fix #66062: editing shortcut_context in inspectorRedMser
2022-09-19Change return type of `get_configuration_warnings` to `PackedStringArray`Marc Gilleron
2022-09-19[RTL] Add option to apply built-in effects to the individual connected glyphs.bruvzg
2022-09-18Make the inner TabBar in a TabContainer behave as if it were in a ContainerRindbee
2022-09-18Merge pull request #66012 from Rindbee/fix-TabContainer-minimum_sizeRémi Verschelde
Fix minimum size calculation for `TabContainer`
2022-09-18Fix minimum size calculation for TabContainerRindbee
2022-09-16Fix RichTextLabel not updating on theme/theme override change until text is ↵bruvzg
updated.
2022-09-14Add configuration warning to GraphEdit regarding future refactoringHendrik Brucker
2022-09-13RTL Improvementsbruvzg
Do not apply negative line separation to the last line. Ensure all methods immediately update cache in a single thread mode. Fix bbcode_enabled change not being applied until text is changed. Fix crash if line height is zero or less.
2022-09-09Improve parameter naming and documentation in GraphEdit and GraphNodeYuri Sizov
Co-authored-by: Maganty Rushyendra <mrushyendra@yahoo.com.sg>
2022-09-08Make `Vector2i` values paired with `EDSCALE` be just `Vector2`Michael Alexsander
2022-09-08Merge pull request #65241 from bruvzg/no_keymap_ambiguityRémi Verschelde
Fix key mapping changes when moving from macOS to other platform.
2022-09-08Merge pull request #60108 from KoBeWi/arise_to_topRémi Verschelde
Rename raise() to move_to_front()
2022-09-07[RTL] Stop threaded RTL auto-redrawing as soon as text processing is ↵bruvzg
finished, instead of waiting for first redraw.
2022-09-07Fix key mapping changes when moving from macOS to other platformbruvzg
Removes separate `Command` key (use `Meta` instead). Adds an event flag to automatically remap `Command` <-> `Control` (cannot be set alongside `Control` or `Meta`).
2022-09-07Merge pull request #65375 from ItsNL/fix-accep-dialog-its_inside_tree-falseRémi Verschelde
Condition "!is_inside_tree()" is true" when AcceptDialog was visible from the editor.
2022-09-07Merge pull request #65389 from Rindbee/fix-file-list-in-FileDialog-not-updatingRémi Verschelde
Fix file list in FileDialog not updating on first run
2022-09-07Merge pull request #65355 from groud/split_container_min_grab_thicknessRémi Verschelde
Allow SplitContainer to have a grab area larger than its visual grabber
2022-09-07Fix "grab_focus: Condition "!is_inside_tree()" is true" when AcceptDialog ↵=
was visible from the editor.
2022-09-07Fix file list in FileDialog not updating on first runRindbee
2022-09-07Allow SplitContainer to have a grab area larger than its visual grabberGilles Roudière
2022-09-07Rename ProgressBar.`percent_visible` to `show_percentage`Micky
`percent_visible` -> `show_percentage` `set_percent_visible` -> `set_show_percentage` `is_percent_visible` -> `is_percentage_shown`
2022-09-07Merge pull request #65446 from YuriSizov/dialogs-make-styleboxes-matterRémi Verschelde
Make `AcceptDialog` and derivatives utilize `StyleBox` fully
2022-09-07Merge pull request #65437 from YuriSizov/theme-gui-renamesRémi Verschelde
Improve naming of theme properties throughout GUI code
2022-09-07Merge pull request #65197 from Mickeon/rename-connect-one-shotRémi Verschelde
Rename CONNECT_ONESHOT to CONNECT_ONE_SHOT
2022-09-07Merge pull request #64361 from Mickeon/rename-caret-blinkRémi Verschelde
Rename every instance of `caret_blink_speed` to `caret_blink_interval`
2022-09-07Make AcceptDialog and derivatives utilize StyleBox fullyYuri Sizov
2022-09-06Rename raise() to move_to_front()kobewi
2022-09-06Fix theming code in Panel, SplitContainer, RichTextLabelYuri Sizov
2022-09-06Improve naming of theme properties throughout GUI codeYuri Sizov
Rename ItemList's bg -> panel Rename ItemList's bg_focus -> focus Rename ProgressBar's bg -> background Rename ProgressBar's fg -> fill Rename Tree's bg -> panel Rename Tree's bg_focus -> focus Rename ScrollContainer's bg -> panel Rename FileDialog's *_icon_modulate -> *_icon_color Rename FileDialog's files_disabled -> file_disabled_color Rename CheckButton's on/off -> checked/unchecked Rename check_v_adjust -> check_v_offset
2022-09-06Rename CONNECT_ONESHOT TO CONNECT_ONE_SHOTMicky
For consistency. Every other exposed `one_shot` is spaced out like this.
2022-09-06Rename every instance of `caret_blink_speed` to `caret_blink_interval`Micky
It's been changed in EditorSettings, LineEdit, TextEdit. Affects setters and getters, and passed parameters, too.
2022-09-06Merge pull request #65423 from YeldhamDev/i_want_to_ride_my_bycicleRémi Verschelde
Rename `PopupMenu`'s `set/get_current_index()` to `set/get_focused_item()`
2022-09-06Merge pull request #64417 from aaronfranke/has-spaceRémi Verschelde
Replace AABB/Rect2/Rect2i has_no_* methods with has_* methods
2022-09-06Rename `PopupMenu`'s `set/get_current_index()` to `set/get_focused_item()`Michael Alexsander
2022-09-06Rename `range_lerp` to `remap`Micky
2022-09-05Merge pull request #64840 from maximkulkin/graph-edit-node-selectionRémi Verschelde
Add GraphNode 'selected' and 'deselected' signals, simplify GraphEdit
2022-09-05Add GraphNode 'selected' and 'deselected' signals, simplify GraphEditMaxim Kulkin
2022-09-05Merge pull request #65028 from groud/fix_split_containerRémi Verschelde
Improve SplitContainer behavior, keeping asked split position whenever possible
2022-09-04Replace Rect2(i) has_no_area with has_areaAaron Franke
2022-09-02Merge pull request #65250 from YuriSizov/theme-owner-risesRémi Verschelde
2022-09-02Merge pull request #59589 from Calinou/rename-or-lesser-range-property-hintRémi Verschelde
2022-09-02Un-defer the initial theme changed notificationYuri Sizov
Co-authored-by: Rindbee <idleman@yeah.net>
2022-09-02Add ThemeOwner type for managing theme propagation and lookupYuri Sizov