Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-07-14 | Merge pull request #48502 from KoBeWi/visual_button | Rémi Verschelde | |
Add set_pressed_no_signal method to BaseButton | |||
2021-07-13 | Add header theme type variations to labels | kobewi | |
2021-07-13 | Merge pull request #50169 from pycbouh/theme-type-variations | Rémi Verschelde | |
2021-07-13 | Add set_pressed_no_signal method to BaseButton | kobewi | |
2021-07-13 | Merge pull request #50086 from Geometror/label-improve-layout-options | Rémi Verschelde | |
Improvements to Label's layout options | |||
2021-07-13 | Merge pull request #50135 from KoBeWi/🌲.update() | Rémi Verschelde | |
Update Tree when modified | |||
2021-07-13 | Add type variations to Theme | Yuri Sizov | |
2021-07-07 | Add cache to color picker for presets | Francois Belair | |
This prevents loading from the project metadata more than once, significantly saving performance with nodes that have color pickers. | |||
2021-07-07 | Merge pull request #50208 from kleonc/accept_dialog-remove_button | Rémi Verschelde | |
Add AcceptDialog::remove_button method | |||
2021-07-07 | Merge pull request #49890 from voxelv/fix_tree_range_click_timeout_crash_46648 | Hugo Locurcio | |
Avoid using a nullptr root in Tree._range_click_timeout(). | |||
2021-07-06 | Add AcceptDialog::remove_button method | kleonc | |
2021-07-06 | LineEdit: Respect `max_length` by truncating text to append | Rémi Verschelde | |
When appending text (either via `set_text()` or by pasting from clipboard), if the input would make the `LineEdit` exceed its configured `max_length`, the input text is truncated to fit. The discard part is passed as a parameter in the `text_change_rejected` signal. Fixes #33321. Fixes #41278. Also cleaned up unimplemented `max_chars` property in `TextEdit`. Co-authored-by: Tony-Goat <70238376+Tony-Goat@users.noreply.github.com> | |||
2021-07-04 | Clean up Tree | reduz | |
Fixes some problems introduced by #49917 * Tree used minimum size as a stretch ratio, so it forced a minimum size of 1. * Minimum size redone, stretch ratio moved to a separate setting * Fitting to contents was enforced, this is more intuitive, but in many situations this is undesired. * Added a clip content option for situations where fit to contents does not apply. * Icon would scroll with the item, making it invislbe if the item is too long. * Made icon always appear to the right (or left if RTL is enabled) of the visible item space. | |||
2021-07-04 | Improvements to Label's layout options | Hendrik Brucker | |
- Added options to trim the text in case it overruns - Added more autowrap modes - Improved line breaking, which ignores trailing spaces | |||
2021-07-04 | Update Tree when modified | kobewi | |
2021-07-03 | Merge pull request #49468 from menip/FixGetScreenPosition | Rémi Verschelde | |
Fix Control::get_screen_position() not considering viewport scale | |||
2021-07-02 | Make invisible `SplitContainer` nodes correctly calculate the minimal size ↵ | Michael Alexsander | |
of its children | |||
2021-06-30 | Fix editor suffixes and degrees conversion | reduz | |
* Functions to convert to/from degrees are all gone. Conversion is done by the editor. * Use PROPERTY_HINT_ANGLE instead of PROPERTY_HINT_RANGE to edit radian angles in degrees. * Added possibility to add suffixes to range properties, use "min,max[,step][,suffix:<something>]" example "0,100,1,suffix:m" * In general, can add suffixes for EditorSpinSlider Not covered by this PR, will have to be addressed by future ones: * Ability to switch radians/degrees in the inspector for angle properties (if actually wanted). * Animations previously made will most likely break, need to add a way to make old ones compatible. * Only added a "px" suffix to 2D position and a "m" one to 3D position, someone needs to go through the rest of the engine and add all remaining suffixes. * Likely also need to track down usage of EditorSpinSlider outside properties to add suffixes to it too. | |||
2021-06-30 | Avoid using a nullptr root in Tree._range_click_timeout(). | voxelv | |
Fixes #46648 | |||
2021-06-29 | Merge pull request #37181 from jitspoe/master.button_icon_alignment | Rémi Verschelde | |
2021-06-29 | Merge pull request #49970 from trollodel/graphnode_fix_port_position | Rémi Verschelde | |
Fix GraphNode port position when the control has the Expand flag | |||
2021-06-29 | Add alignment options to icons on buttons. | jitspoe | |
They can now be centered and right-aligned. Fixes #11380. | |||
2021-06-29 | Merge pull request #49719 from LightningAA/rename-node-is-ancestor-of | Rémi Verschelde | |
Rename `is_a_parent_of()` to `is_ancestor_of()` | |||
2021-06-29 | Fixes crash in case no column in tree is expanded and has minimum size | Gilles Roudière | |
2021-06-28 | Fix GraphNode port position when the control has the Expand flag | trollodel | |
2021-06-28 | Merge pull request #49917 from groud/tree_disable_scroll | Rémi Verschelde | |
Allow disabling scrolling in Tree and implement horizontal scrolling | |||
2021-06-28 | Implement Tree's internal minimum width calculation | Gilles Roudière | |
2021-06-25 | Implement native extension system | reduz | |
* Deprecates GDNative in favor of a simpler, lower level interface. * New extension system allows registering core engine classes. * Simple header interface in gdnative_interace.h | |||
2021-06-25 | Allow disabling scrolling in Tree | Gilles Roudière | |
2021-06-25 | Merge pull request #49908 from KoBeWi/📎🔫 | Rémi Verschelde | |
Remove clips_input() method and use clip_content | |||
2021-06-25 | Remove clips_input() method and use clip_content | kobewi | |
2021-06-25 | Fix RichTextLabel custom_effects export to be properly filtered in the Editor | Eric M | |
2021-06-21 | Merge pull request #49798 from pycbouh/tree-lines-items-draw-order | Rémi Verschelde | |
Make relationship lines draw on top of `TreeItem`s | |||
2021-06-21 | Rename `is_a_parent_of()` to `is_ancestor_of()` | Lightning_A | |
2021-06-21 | Make relationship lines draw on top of TreeItems | Yuri Sizov | |
2021-06-21 | Update min size on Label::set_text | Haoyu Qiu | |
2021-06-21 | Merge pull request #49665 from Paulb23/code_edit_indent | Rémi Verschelde | |
Move indentation into CodeEdit | |||
2021-06-21 | Improve nine patch behavior of TextureProgressBar | floppyhammer | |
2021-06-20 | Move indent management to CodeEdit | Paulb23 | |
2021-06-20 | Merge pull request #35608 from golfinq/master | Rémi Verschelde | |
2021-06-20 | Use mouse and joypad enums instead of plain integers | Aaron Franke | |
Also MIDIMessage | |||
2021-06-20 | Rich Text Label now allows for foreground colors and background colors | golfinq | |
2021-06-19 | Rename `instance()`->`instantiate()` when it's a verb | Lightning_A | |
2021-06-20 | Merge pull request #49742 from Paulb23/remove_keywords_textedit | Rémi Verschelde | |
Remove redundant keywords from TextEdit | |||
2021-06-20 | Merge pull request #48696 from madmiraal/fix-48692 | Rémi Verschelde | |
Fix `InputMap.action_erase_event()` failing to erase events correctly. | |||
2021-06-19 | Remove redundant keywords from TextEdit | Paulb23 | |
2021-06-17 | Add PROPERTY_USAGE_NONE and use it | Aaron Franke | |
2021-06-17 | Scrollwheel (w/o ctrl) to zoom, mouse warping when panning | Lightning_A | |
Now uses Ctrl + Scrollwheel for vertical scrolling Ctrl + Shift Scrollwheel for horizontal scrolling Also converts some macros to constants | |||
2021-06-17 | Merge pull request #38261 from pycbouh/adjust-graph-edit-zoom-levels | Rémi Verschelde | |
Make zoom limits and step adjustable in `GraphEdit` | |||
2021-06-17 | Merge pull request #49258 from megalobyte/editor-fix | Rémi Verschelde | |
Fixes for documentation search |