Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-08-22 | Merge pull request #51965 from theoway/fix_node_arranger_origin_bug | K. S. Ernest (iFire) Lee | |
Fixes position offset of node groups set by arrange_nodes() in GraphEdit | |||
2021-08-22 | Fixes position offset of node groups set by arrange_nodes() in GraphEdit | Umang Kalra | |
2021-08-21 | Refactor GraphEdit connections | Jummit | |
Remove duplicate bezier code and use Curve instead. Add an overridable method for retrieving the points of a connection line, which makes it posible to create custom connections lines. | |||
2021-08-21 | Fix line_separation working incorrectly in find_click of RichTextLabel | Menderes | |
Apply suggestions from code review Co-authored-by: bruvzg <7645683+bruvzg@users.noreply.github.com> | |||
2021-08-20 | Merge pull request #51866 from requizm/fix/49455 | Hugo Locurcio | |
Fix `line_separation` working incorrectly in `RichTextLabel` | |||
2021-08-20 | Fix line_separation constant working incorrectly in RichTextLabel | requizm | |
2021-08-19 | Merge pull request #51804 from ThreeRhinosInAnElephantCostume/fixundoredo | Rémi Verschelde | |
2021-08-19 | fixed popup_menu buttons getting triggered by lmb press instead of release. | ThreeRhinosInAnElephantCostume | |
2021-08-18 | Minor tweaks/fixes for the Command Palette | Michael Alexsander | |
2021-08-18 | Merge pull request #50752 from Phischermen/indeterminate_checkmark_api | Rémi Verschelde | |
Added icons and API for indeterminate checkmarks for the Tree class. | |||
2021-08-17 | Improve Undo/Redo menu items | Haoyu Qiu | |
* Make Undo/Redo menu items disabled when clicking it does nothing. * Context menu of `TextEdit` * Context menu of `LineEdit` * Editor's Scene menu * Script editor's Edit menu and context menu (for Script and Text) * Make editor undo/redo log messages translatable. * Mark `UndoRedo`'s `has_{un,re}do()` methods as `const`. * Expose `TextEdit`'s `has_{un,re}do()` to scripts since `{un,re}do()` are already available. | |||
2021-08-17 | Merge pull request #51760 from requizm/fix/deleteallselection | Rémi Verschelde | |
Deletion occurs when all text is selected | |||
2021-08-17 | We can delete all text on TextEdit | requizm | |
While all text of TextEdit was selected, deletion with backspace did not occur. It can now be deleted. | |||
2021-08-16 | Added icons and API for indeterminate checkmarks for the Tree class. | Kevin Fischer | |
2021-08-16 | Merge pull request #51698 from Paulb23/text-editor-settings | Rémi Verschelde | |
Reorganise text editor settings | |||
2021-08-16 | Reorganise text editor settings | Paulb23 | |
2021-08-16 | Fix MenuButton not emitting about_to_popup signal | Haoyu Qiu | |
2021-08-16 | Fixed crash executing TextEdit.new().set_draw_control_chars(true) | Vignesh1-art | |
Fixes #51613. | |||
2021-08-16 | Merge pull request #51249 from kleonc/tab_container-fix-disconnecting-errors | Rémi Verschelde | |
TabContainer: Fix error on removing top-level Control child, Remove _get_tab method | |||
2021-08-15 | Merge pull request #51512 from Bhu1-V/PR/cmd-fix | Rémi Verschelde | |
command palette improvements | |||
2021-08-15 | command palette improvements | Bhuvan Vemula | |
2021-08-13 | Merge pull request #51642 from akien-mga/cleanup-use_single_quotes | Rémi Verschelde | |
2021-08-13 | Merge pull request #51585 from Paulb23/theme-update-optimisation | Rémi Verschelde | |
2021-08-13 | Merge pull request #50609 from bruvzg/te_block_caret | Rémi Verschelde | |
[TextEdit] Improve block/insert caret drawing. | |||
2021-08-13 | Style: Cleanup code using `text_editor/completion/use_single_quotes` | Rémi Verschelde | |
2021-08-13 | Only update TextEdit text cache when dirty | Paulb23 | |
2021-08-13 | Move CodeEdit theme overrides into EditorTheme | Paulb23 | |
2021-08-13 | Fix incorrect completion popup size of `CodeEdit` | Yuri Roubinsky | |
2021-08-13 | [TextEdit] Improve block/insert caret drawing. | bruvzg | |
2021-08-13 | Add bulk theme overrides to Control | Paulb23 | |
2021-08-13 | Fix some unnecessary includes | Aaron Franke | |
2021-08-12 | Fix breakpoint toggle signal not firing when expected | Paulb23 | |
2021-08-12 | Merge pull request #50371 from Paulb23/text_edit_cleanup | Rémi Verschelde | |
2021-08-12 | Cleanup and complete TextEdit inspector and docs | Paulb23 | |
2021-08-12 | Cleanup and bind remaing methods in TextEdit | Paulb23 | |
2021-08-12 | Merge pull request #51517 from Chaosus/precise_graphedit_port_handling | Yuri Roubinsky | |
Better port handling connection for `GraphEdit` | |||
2021-08-12 | Cleanup and expose viewport / scrolling methods | Paulb23 | |
2021-08-12 | Rename readonly to editable | Paulb23 | |
2021-08-12 | Rename insert mode to overtype mode | Paulb23 | |
2021-08-12 | Protect internal CodeEdit --> TextEdit API | Paulb23 | |
2021-08-12 | Cleanup TextEdit selection methods | Paulb23 | |
2021-08-12 | Expose and cleanup TextEdit line wrap API | Paulb23 | |
2021-08-12 | Cleanup and rename caret operations | Paulb23 | |
2021-08-12 | Make TextEdit cut, copy and paste overridable | Paulb23 | |
2021-08-12 | Remove dead code from TextEdit | Paulb23 | |
2021-08-12 | Merge pull request #51502 from codecat/fix-caret-selection | Rémi Verschelde | |
Move cursor to edge of selection when moving caret left/right | |||
2021-08-12 | Better port handling connection for `GraphEdit` | Yuri Roubinsky | |
2021-08-11 | Triple click in text editor now uses last mouse position for validity | Melissa Geels | |
Previously, you would be able to double click a word, followed by single-clicking another word on the same line, which would select the entire line. Now, it will only select the whole line if the mouse position has remained the same after the double click. This mimicks the behavior in most third party text editors. Fixes #51312. | |||
2021-08-11 | Move cursor to edge of selection when moving caret left/right | Melissa Geels | |
This is to mimic the behavior of many third party text editors. The reason it's not doing it when moving by word is due to that behavior being mostly the same on other editors. | |||
2021-08-11 | Merge pull request #47378 from aaronfranke/use-input-enums | Rémi Verschelde | |
Use key enum instead of plain integers for input code |