Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-08-25 | Merge pull request #51821 from Calinou/builtin-shaders-add-comments | JFonS | |
Add comments at the top of each built-in shader to ease debugging | |||
2021-08-24 | Make RichTextLabel honour default cursor shape property | Haoyu Qiu | |
2021-08-23 | Merge pull request #51947 from AnilBK/redundant-assignments | Michael Alexsander | |
[cppcheck] Remove some redundant assignments. | |||
2021-08-23 | Entirely removes BIND_VMETHOD in favor of GDVIRTUAL | reduz | |
* `_gui_input`, `_input`, `_unhandled_input` and `_unhandled_key_input` are now regular C++ virutal functions. * Everything else converted to GDVIRTUAL * BIND_VMETHOD is gone, always use the new syntax from now on. Creating `_gui_input` method and using the binder to register events will no longer work, simply override the virtual function now. | |||
2021-08-22 | Fix GraphEdit connection colors | Jummit | |
2021-08-22 | Merge pull request #51886 from Geometror/fix-layout-editor-file-dialog | Michael Alexsander | |
Fix ItemList layout (+EditorFileDialog) | |||
2021-08-22 | Merge pull request #51700 from Geometror/fix-color-picker | K. S. Ernest (iFire) Lee | |
Reimplement ColorPicker presets | |||
2021-08-22 | Merge pull request #51975 from Jummit/consistent-graphedit-connections | K. S. Ernest (iFire) Lee | |
Make GraphEdit connections consistent on zoom | |||
2021-08-22 | Replace BIND_VMETHOD by new GDVIRTUAL syntax | reduz | |
* New syntax is type safe. * New syntax allows for type safe virtuals in native extensions. * New syntax permits extremely fast calling. Note: Everything was replaced where possible except for `_gui_input` `_input` and `_unhandled_input`. These will require API rework on a separate PR as they work different than the rest of the functions. Added a new method flag METHOD_FLAG_OBJECT_CORE, used internally. Allows to not dump the core virtuals like `_notification` to the json API, since each language will implement those as it is best fits. | |||
2021-08-22 | Make GraphEdit connections consistent on zoom | Jummit | |
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 | Remove redundant assignments. | Anilforextra | |
Use used_in_transfer instead of used_in_compute twice. | |||
2021-08-21 | Fix ItemList layout (+EditorFileDialog) | Hendrik Brucker | |
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-18 | Add comments at the top of each built-in shader to ease debugging | Hugo Locurcio | |
When a shader error is printed about a built-in shader, the origin of the shader will now be recognizable immediately by looking at the top of the printed shader code. | |||
2021-08-18 | Reimplement ColorPicker presets | Hendrik Brucker | |
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` |