Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-12-31 | Merge pull request #34612 from timothyqiu/item-list | Rémi Verschelde | |
Improves ItemList documentation | |||
2019-12-31 | Improves ItemList | Haoyu Qiu | |
* Adds range hint for integer properties * Adds missing descriptions in documentation * Updates some method descriptions to match the actual behavior * Fixes second param name of `set_item_icon_transposed` from `rect` to `transposed` | |||
2019-12-30 | Fix argument type in set_follow_focus() | Tomasz Chabora | |
2019-12-30 | Merge pull request #34572 from KoBeWi/I_give_up | Rémi Verschelde | |
Make new ScrollContainer focus behavior optional | |||
2019-12-30 | Merge pull request #34653 from YeldhamDev/optionbutton_margin_auto | Rémi Verschelde | |
Make OptionButton itself take into account the arrow margin instead of relying on the theme | |||
2019-12-30 | Make new ScrollContainer focus behavior optional | Tomasz Chabora | |
2019-12-30 | Merge pull request #34582 from timothyqiu/forward-decl | Rémi Verschelde | |
Cleans up headers included in editor_node.h | |||
2019-12-30 | Merge pull request #34563 from Paulb23/23751_extra_line_indent | Rémi Verschelde | |
Fixed selection indent taking an additional line | |||
2019-12-28 | Make OptionButton itself take into account the arrow margin instead of ↵ | Michael Alexsander | |
relying on the theme | |||
2019-12-24 | Cleans up headers included in editor_node.h | Haoyu Qiu | |
2019-12-23 | Fixed selection indent taking an additional line | Paulb23 | |
2019-12-23 | Fix issue with disconnecting events when font changes | Jonas Bernemann | |
2019-12-17 | Use global transform when calculating scroll | Tomasz Chabora | |
2019-12-16 | Merge pull request #34269 from KoBeWi/scrolling_peeps | Rémi Verschelde | |
Scroll ScrollContainer to focused children | |||
2019-12-16 | Merge pull request #34311 from mikkac/34289 | Rémi Verschelde | |
Fix- using cut in first line of a script file does not remove the line | |||
2019-12-16 | Prevent infinite loop when focus_next is invisible | Tomasz Chabora | |
2019-12-14 | Fix- using cut in first line of a script file does not remove the line | Mikolaj Kaczmarek | |
2019-12-13 | Remove unused theme elements in H/VSlider | Michael Alexsander | |
2019-12-13 | doc: Sync classref with current source | Rémi Verschelde | |
Also apply clang-format. | |||
2019-12-13 | Merge pull request #34235 from timothyqiu/menu-scroll | Rémi Verschelde | |
Fixes long popup menu scroll behavior | |||
2019-12-12 | Make Button and co. take internal margins into account when clipping text | Michael Alexsander | |
2019-12-12 | Fixes crash after remove_line in RichTextLabel | Haoyu Qiu | |
`ItemFrame` always have a line. | |||
2019-12-12 | CharFXTransform: Drop unnecessary get_value_or() | Rémi Verschelde | |
See https://github.com/godotengine/godot/pull/23658#issuecomment-562706669 The method was implemented back when Dictionary.get(key, default) did not exist, but now that it does we do not need a custom method in CharFXTransform. It's a new feature in 3.2, so does not break compat with 3.1.x. | |||
2019-12-11 | Scroll ScrollContainer to focused children | Tomasz Chabora | |
2019-12-10 | Merge pull request #34040 from qarmin/unused_variable_more_precise_numbers | Rémi Verschelde | |
Removed unused variables, add some constants numbers | |||
2019-12-10 | Removed unused variables, add some constants numbers | Rafał Mikrut | |
2019-12-10 | Fixes long popup menu scroll behavior | Haoyu Qiu | |
Popup menus longer than the viewport have stange behaviors before this fix: * They always have one pixel outside the viewport. * You can scroll down the long menu even if bottom outside screen and top inside the screen. (Only menus one pixel above the screen is limited to scroll down.) | |||
2019-12-10 | Update minimum size of SpinBox on theme change | Tomasz Chabora | |
2019-12-09 | Merge pull request #34203 from bruvzg/ime_placeholder | Rémi Verschelde | |
Hide LineEdit placeholder if IME composition string is not empty. | |||
2019-12-09 | Fixed strange behaviour of scroll in the ItemList. | allkhor | |
2019-12-08 | Hide LineEdit placeholder if IME composition string is not empty. | bruvzg | |
2019-12-06 | Add spaces after commas and strip extra ones in *FileDialog filter menu | Michael Alexsander | |
2019-12-06 | Remove extra spaces from parenthesis in *FileDialog's filter menu | Michael Alexsander | |
2019-12-01 | Fixed caret alignment with placeholder text | Paulb23 | |
2019-12-01 | Fixed LineEdit alignment when removing text or undo / redo | Paulb23 | |
2019-11-26 | Range: Remove min/max check added in #33908 | Rémi Verschelde | |
This wasn't a very good idea as it puts too strict requirements on how to set `min` and `max` values. For example, since the default min and max are 0 and 100, this triggers an error: ``` set_min(256) set_max(16384) ``` Since `min` will be higher than `max` temporarily. It can be worked around by setting max first, but it's not really intuitive. I'll relax the requirement as it's only a problem in `get_as_ratio`, which already has a check. Fix another min == max occurrence. | |||
2019-11-26 | Range: Fix cases where max was set to or below min value | Rémi Verschelde | |
It will now raise an error whenever this happens so that we can fix these situations. `max == min` is not allowed as it could lead to divisions by zero in ratios, and `max < min` doesn't make much sense. Fixes #33907. | |||
2019-11-25 | Merge pull request #33869 from jbuck3/dialog-resize-bug | Rémi Verschelde | |
Fix WindowDialog moving when resized from the left/top edge | |||
2019-11-24 | Fix WindowDialog moving when resized from the left/top edge | James Buck | |
get_combined_minimum_size() must be used in order to consider the min size specified by the user when determining how far the left/top edge is allowed to move. Otherwise the dialog may think it can shrink further than it should, causing the right/bottom edge to move when the rect size is fixed in set_size(). | |||
2019-11-24 | Fixed index out of size error in TextEdit when opening scripts | PouleyKetchoupp | |
2019-11-20 | Merge pull request #33583 from qarmin/fix_overflows_unitialized | Rémi Verschelde | |
Fix some overflows and unitialized variables | |||
2019-11-20 | Fix some overflows and unitialized variables | Rafał Mikrut | |
2019-11-19 | GradientEdit: Fix index crashes | lupoDharkael | |
2019-11-15 | Make holding Ctrl toggle snapping in GraphEdit | Hugo Locurcio | |
This affects the visual script and visual shader editors as well. | |||
2019-11-12 | Fixed crash when pressing down key on empty Tree | PouleyKetchoupp | |
Fixes #33554 | |||
2019-11-10 | Merge pull request #33516 from qarmin/small_fixes | Rémi Verschelde | |
Memory leaks and crash fixes | |||
2019-11-10 | Memory leak and crash fixes | Rafał Mikrut | |
2019-11-09 | Fixed crash when using icon override in button | PouleyKetchoupp | |
Missing change for PR #33495 | |||
2019-11-09 | Fixed crash when using icon override in button | PouleyKetchoupp | |
Fixes #33457 | |||
2019-11-09 | Fixed not being able to scroll ending wrapped line | Paulb23 | |