Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-10-19 | Fixup `ColorRect` and `TextureRect` renames | Andrii Doroshenko (Xrayez) | |
2020-10-18 | Refactor MethodBind to use variadic templates | reduz | |
Removed make_binders and the old style generated binders. | |||
2020-10-13 | Fixed main gutter not drawing on item toggle | Paulb23 | |
2020-10-13 | Remove redundant property "enabled_focus_mode" | FIF15 | |
Fixes #41529. | |||
2020-10-13 | Respect Tree.set_icon_max_width size for drawing selection box | volzhs | |
2020-10-02 | Updated getters and setters names for toplevel | Duroxxigar | |
2020-10-02 | Merge pull request #42451 from Duroxxigar/rename-toplevel | Rémi Verschelde | |
Renamed toplevel to be top_level | |||
2020-10-01 | Merge pull request #38743 from arrowinaknee/node-config-warnings | Rémi Verschelde | |
Update all get_configuration_warning() to retrieve warnings from the parent | |||
2020-10-01 | Renamed toplevel to be top_level | Duroxxigar | |
2020-09-29 | Merge pull request #41895 from 11thPenguin/master | Rémi Verschelde | |
Fix minor typo, gui_hid -> gui_hide | |||
2020-09-28 | Merge pull request #42092 from DashCell/dropping_file_on_parrent_directory_fix | Rémi Verschelde | |
Dropping file on parent directory fixed | |||
2020-09-24 | Merge pull request #42066 from dalexeev/output_copy | Rémi Verschelde | |
Improvement for the Copy button in the Output Log | |||
2020-09-18 | Fix popup menu item selected when opening the menu | PouleyKetchoupp | |
In order to allow selecting items by either holding left click, or click to open and click again to select, mouse button release was invalidated based on the amount of mouse motion. This was causing issues in some scenarios where an item could be selected while opening the menu if the mouse moved enough between button press and release. This case could happen in the language selection of the project manager, especially on linux, because of the order and timing of the mouse events on x11. This change invalidates mouse release based on a timing condition rather than moved distance to handle any case from the display server properly. | |||
2020-09-16 | Dropping file on parrent dirrectory fixed | Dashcell | |
2020-09-15 | Merge pull request #41776 from EricEzaM/PR/tooltip-bugfixes | Rémi Verschelde | |
Tooltip flickering and targeting fixes. | |||
2020-09-15 | Tooltip flickering and targeting fixes. | Eric M | |
2020-09-14 | Improvement for the Copy button in the Output Log | Danil Alexeev | |
Now if no text is selected, pressing the Copy button copies the entire text. | |||
2020-09-12 | Merge pull request #41995 from Rubonnek/disconnect-item-rect-changed | Rémi Verschelde | |
Disconnect item_rect_changed removing a child of GraphEdit | |||
2020-09-11 | Disconnect item_rect_changed when removing a child of GraphEdit | Wilson E. Alvarez | |
2020-09-11 | Remove bit fields and use fixed width integers instead. | Marcel Admiraal | |
2020-09-11 | Merge pull request #41971 from nekomatata/richtextlabel-align-pointer | Rémi Verschelde | |
Fix RichTextLabel alignment for clickable regions | |||
2020-09-11 | Fix RichTextLabel alignment for clickable regions | PouleyKetchoupp | |
Fixes #41006 (regression from #39164). The original alignment fix was limited to PROCESS_DRAW mode, which caused some discrepancies with PROCESS_POINTER mode. Now only PROCESS_CACHE is excluded with a condition a few lines above. | |||
2020-09-10 | Move safe line color into editor | Paulb23 | |
2020-09-10 | Move ConnectionGutter to editor code_editor | Paulb23 | |
2020-09-10 | Add folding gutter to code_edit | Paulb23 | |
2020-09-10 | Add main_gutter (breakpoints, bookmarks, execution lines) to code_edit | Paulb23 | |
2020-09-10 | Changed line_edited_from(from) to lines_edit_from(from, to) | Paulb23 | |
2020-09-10 | Added Line numbers to CodeEdit | Paulb23 | |
2020-09-10 | Added gutter system to TextEdit | Paulb23 | |
2020-09-10 | Add and convert editor to use CodeEdit | Paulb23 | |
2020-09-10 | Merge pull request #41890 from YeldhamDev/tabs_previous | Rémi Verschelde | |
Add 'get_previous_tab()' to 'Tabs' | |||
2020-09-10 | Merge pull request #41920 from Chaosus/fix_colorpicker | Rémi Verschelde | |
Fix ColorPickerButton to apply changes after picker popup closed | |||
2020-09-09 | Rename ShortCut to Shortcut which is more grammatically correct | Hugo Locurcio | |
See https://github.com/godotengine/godot/issues/16863#issuecomment-685236980. | |||
2020-09-09 | Fix ColorPickerButton to apply changes after picker popup closed | Yuri Roubinsky | |
2020-09-08 | Fixed minor typo, gui_hid -> gui_hide. | Jonah Stich | |
2020-09-08 | Add 'get_previous_tab()' to 'Tabs' | Michael Alexsander | |
2020-09-08 | Check if old mouse column is still available. | Marcel Admiraal | |
2020-09-08 | Merge pull request #41870 from nekomatata/fix-line-edit-enter-regression | Rémi Verschelde | |
Fix LineEdit not consuming enter events | |||
2020-09-08 | Fix LineEdit not consuming enter events | PouleyKetchoupp | |
LineEdit should not return early when processing KEY_ENTER, so it can consume the event properly. Regression introduced by mistake while fixing enter events for Android (PR #40487 - c0b394572f35498801571ad7176eb357d5de1bf3) | |||
2020-09-07 | Use != 0 instead of > 0 when checking bit mask. | Marcel Admiraal | |
2020-09-06 | Fixed get_usable_parent_rect() errors when initialising popup menus. | Eric M | |
2020-09-05 | Merge pull request #40649 from themvl/master | Rémi Verschelde | |
Fix bug where leading and trailing spaces werent taken into account with center and right allignment | |||
2020-09-04 | Merge pull request #41689 from nathanfranke/fix-popupmenu-unresponsive | Rémi Verschelde | |
Fix PopupMenu unresponsive on right side of menu | |||
2020-09-03 | [Complex Test Layouts] Change `String` to use UTF-32 encoding on all platforms. | bruvzg | |
2020-09-03 | Merge pull request #41456 from nekomatata/x11-fix-popups | Rémi Verschelde | |
Popup fixes for X11 display server | |||
2020-09-02 | Fix PopupMenu unresponsive on right side of menu | Nathan Franke | |
2020-09-01 | Revert "Updated LineEdit to address #41278" | Rémi Verschelde | |
This reverts commit 71febfd6e2f6187fcc106ce715124cf173bfa0b8. | |||
2020-09-01 | PopupMenu rework and enhancements | EricEzaM | |
Many scrolling behaviour improvements and the ability to limit popup size. | |||
2020-08-31 | Fix bug where leading and trailing spaces werent taken into account with ↵ | mvl | |
center and right allignment. | |||
2020-08-26 | Updated LineEdit to address #41278 | Tony-Goat | |
Updated set_max_length() function to actually pull a substring of the current text so it's not all thrown away when the new max length is shorter than the current length. |