Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-10-14 | Abort LineEdit shaping if no font is set to avoid unnecessary error messages. | bruvzg | |
2022-10-13 | Merge pull request #67348 from Mickeon/salvage-a-dear-comment | Rémi Verschelde | |
Comment not to remove `data` structs in some Nodes | |||
2022-10-13 | Comment not to remove `data` structs in some Nodes | Micky | |
2022-10-13 | Merge pull request #66337 from EricEzaM/sprite-frames | Rémi Verschelde | |
Ensure control built-in shortcuts are matched exactly & add shortcuts for SpriteFrames editor | |||
2022-10-13 | Merge pull request #66357 from EricEzaM/shortcut-context-on-node | Rémi Verschelde | |
Move Shortcut Context to control and fix `shortcut_input` with `shortcut_context` | |||
2022-10-13 | Move Shortcut Context to Control and ensure that `shortcut_input` adheres to ↵ | Eric M | |
contexts. Also ensure that controls with no context are only triggered AFTER nodes which do have a context. | |||
2022-10-13 | fixed holding alt while zooming zooms in by 2 increments. | MladoniSzabi | |
2022-10-13 | Merge pull request #66953 from Sauermann/fix-top-level-connect-error | Rémi Verschelde | |
Fix Control node not disconnecting from signal | |||
2022-10-12 | Merge pull request #67232 from bruvzg/popup_edit | Rémi Verschelde | |
Improve Popup / Window behavior in the edited scene tree. | |||
2022-10-11 | Fix select word under caret using caret col instead of line | Paulb23 | |
2022-10-11 | Merge pull request #67201 from progsource/richtextlabel-icon-spritesheet | Rémi Verschelde | |
Add Spritesheet support to RichTextLabel BBCode | |||
2022-10-11 | Add Spritesheet support to RichTextLabel BBCode | Petra Baranski | |
BBCode: [img region=0,0,16,16]res://icon.svg[/img] | |||
2022-10-11 | Prevent `Popup`s it the edited scene tree from closing on focus loss. Hide ↵ | bruvzg | |
irrelevant `Popup` flags from the editor inspector. | |||
2022-10-10 | SCons: Re-enable treating `#warning` as error with `werror` | Rémi Verschelde | |
Replace all TODO uses of `#warning` by proper TODO comments, and will open matching bug reports to keep track of them. We don't have a great track record fixing TODOs, but I'd wager we're even worse for fixing these "TODO #warning" so we should prohibit this usage. | |||
2022-10-10 | Merge pull request #67117 from Jummit/tree-button-color | Rémi Verschelde | |
Expose TreeItem::set_button_color | |||
2022-10-10 | Merge pull request #67145 from Paulb23/tab_textedit | Rémi Verschelde | |
Fix inserting tabs in TextEdit | |||
2022-10-10 | Merge pull request #65805 from MewPurPur/improve-breakpoint-hovering | Rémi Verschelde | |
Improve bookmark and breakpoint indicators | |||
2022-10-10 | Improved breakpoints hover indicator | VolTer | |
2022-10-10 | Don't allow removing TextEdit's main caret | Haoyu Qiu | |
2022-10-09 | Handle tab in TextEdit | Paulb23 | |
2022-10-09 | Merge pull request #67083 from RedMser/label-font-warning | Rémi Verschelde | |
Add warning for missing characters in label font | |||
2022-10-09 | Merge pull request #66524 from microaeris/aeris/text-edit-get-scroll-bar | Rémi Verschelde | |
Getters for TextEdit scroll bars | |||
2022-10-09 | Expose TreeItem::set_button_color | Jummit | |
2022-10-08 | Fix Label text length mismatch after localization | Haoyu Qiu | |
2022-10-08 | Add warning for missing characters in label font | RedMser | |
2022-10-07 | Getters for TextEdit scrollbars | microaeris | |
2022-10-07 | Fix MSVC warnings, rename shadowed variables, fix uninitialized values, ↵ | bruvzg | |
change warnings=all to use /W4. | |||
2022-10-07 | Merge pull request #62910 from Vitika9/gsoc-colorpicker-ux | Rémi Verschelde | |
ColorPicker UX | |||
2022-10-07 | Add split caret direction markers. Fix block/overtype caret size. | bruvzg | |
2022-10-06 | Merge pull request #66961 from Rindbee/fix-set_custom_color | Rémi Verschelde | |
Fix wrong condition used in `set_custom_color` | |||
2022-10-06 | Merge pull request #61902 from Paulb23/multi-caret | Rémi Verschelde | |
Add Multi-caret support to TextEdit | |||
2022-10-06 | Fix wrong condition used in `set_custom_color` | Rindbee | |
2022-10-05 | Fix Control not disconnecting signal | Markus Sauermann | |
If a Control has not parent CanvasItem and is set as top_level, then it does not disconnect from the "size_changed" signal when it leaves the Canvas. This patch corrects this. | |||
2022-10-05 | Add multi caret support to CodeEdit | Paulb23 | |
2022-10-05 | Add mutliple Caret support to TextEdit | Paulb23 | |
2022-10-05 | Merge pull request #66770 from EricEzaM/search-by-event | Rémi Verschelde | |
Add searching by event in Editor Settings shortcuts and Project Settings input map. | |||
2022-10-04 | Merge pull request #66559 from zaevi/fix_ScrollContainer_touch_scroll | Rémi Verschelde | |
Fix ScrollContainer touch-scrolling not working. | |||
2022-10-03 | Move selecion into caret | Paulb23 | |
2022-10-03 | Improve MenuButton and OptionButton | EricEzaM | |
* MenuButton + OptionButton: Add method `show_popup()` which performs required popup setup before showing (prefer use of this over `get_popup()->popup()`, otherwise GH #66308 occurs) * MenuButton: Ensure that the menu can be opened with a shortcut, if one is set for the button. (GH #66403). Ensure that popupmenu item shortcuts are checked first before the MenuButton shortcut. | |||
2022-10-03 | Add searching by event for Editor Settings shortcuts and Project Settings ↵ | EricEzaM | |
input map. * Focus into the LineEdit, then perform input to search the list of events by the events assigned. * New specialised editor-only control for this: EventListenerLineEdit. Line edit is a good candidate for such a control because you can focus it, override it's input handling, and show the event all in one control. Update InputEventConfigurationDialog to use event listener line edit rather than the separate tabs. * Cleaner look - no need for tabs. * Simpler code. | |||
2022-09-28 | Merge pull request #58995 from Sauermann/fix-mouse-cursor-change-2 | Rémi Verschelde | |
Update mouse cursor shape after changes | |||
2022-09-28 | Merge pull request #66543 from akien-mga/msvc-warning-c4702 | Rémi Verschelde | |
Fix MSVC warning C4702: unreachable code | |||
2022-09-29 | Fix ScrollContainer touch-scrolling not working. | Zae | |
2022-09-28 | Fix MSVC warning C4702: unreachable code | Rémi Verschelde | |
Part of #66537. | |||
2022-09-28 | Fix MSVC warning C4706: assignment within conditional expression | Rémi Verschelde | |
Part of #66537. | |||
2022-09-27 | Merge pull request #66160 from dpalais/double_time | Rémi Verschelde | |
Use double instead of real_t type for time-related parameters and variables | |||
2022-09-27 | Merge pull request #66445 from ↵ | Rémi Verschelde | |
EricEzaM/GH-66442-shortcut-change-popupmenu-update Ensure popup menu redraws items when shortcuts update. | |||
2022-09-26 | Change time parameters and variables to double type | Dave Palais | |
Addresses #65313 | |||
2022-09-26 | Ensure popup menu redraws items when shortcuts update. | Eric M | |
2022-09-26 | [RTL] Fix font variations / OpenType features of theme default font not ↵ | bruvzg | |
updated when default font is changed. |