Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | 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. | |||
2020-08-22 | Fix popup closed when an ancestor window is focused | PouleyKetchoupp | |
Previously, only the direct parent were taken into account. Popups like contextual menus could stay open if an ancestor which is not a direct parent was focused. Reproduction steps (any platform): - Select a node in the scene tree - Left click the node to start renaming - Right click to open the copy/paste contextual menu - Left click in the scene tree to deselect the node Also closing popup when focusing out of the application, without waiting for the parent to get focus to do so. | |||
2020-08-14 | Skip indentation of empty lines when indenting a selection. | Cheeseness | |
2020-08-14 | Merge pull request #37769 from HellonLegs/master | Rémi Verschelde | |
solved ctrl + alt + special character Issue #6851 | |||
2020-08-14 | Merge pull request #38223 from EricEzaM/spinbox-update-lineedit-after-bad-input | Rémi Verschelde | |
Fixed bug where spinbox would not update to it's actual value after non-numeric input | |||
2020-08-11 | Fix RichTextLabel center alignment bug | Umang Kalra | |
Fixes #40207. | |||
2020-08-09 | Add option to disable virtual keyboard for TextEdit | PouleyKetchoupp | |
Adding support for disabling virtual keyboard on mobile platforms, in order to make it consistent with LineEdit. It allows implementing a custom virtual keyboard. | |||
2020-07-29 | Fix TextEdit line width cache not being updated | Paulb23 | |
2020-07-27 | Make all String float conversion methods be 64-bit | Aaron Franke | |
2020-07-26 | Fix Return key events in LineEdit & TextEdit on Android | PouleyKetchoupp | |
Depending on the device implementation, editor actions could be received with different action ids or not at all for multi-line. Added a parameter to virtual keyboards to properly handle single-line and multi-line cases in all situations. Single-line: Input type set to text without multiline to make sure actions are sent. IME options are set to DONE action to force action id consistency. Multi-line: Input type set to text and multiline to make sure enter triggers new lines. Actions are disabled by the multiline flag, so '\n' characters are handled in text changed callbacks. | |||
2020-07-25 | GUI ScrollBar: possible fix for scrolling | Sergey Minakov | |
Use of unmodified value returned by 'screen_is_touchscreen' to be used in determening if scroll bar should be scrolled | |||
2020-07-24 | Merge pull request #38088 from YeldhamDev/name_tooltips_tweaks | Rémi Verschelde | |
Small naming and tooltip tweaks | |||
2020-07-24 | Merge pull request #40436 from DanielZTing/master | Rémi Verschelde | |
Evenly distribute stretched Nodes in BoxContainer | |||
2020-07-23 | Small naming and tooltip tweaks | Michael Alexsander | |
2020-07-23 | Merge pull request #39737 from Cevantime/add_force_caret_displayed_to_line_edit | Rémi Verschelde | |
add force caret display to line edit | |||
2020-07-22 | Merge pull request #40217 from theoway/visible_line_count_fix | Rémi Verschelde | |
Fixes the get_visible_line_count() of rich text label | |||
2020-07-22 | Merge pull request #40588 from nekomatata/virtual-keyboard-disable | Rémi Verschelde | |
Add option to disable virtual keyboard for LineEdit | |||
2020-07-22 | Add option to disable virtual keyboard for LineEdit | PouleyKetchoupp | |
Co-authored-by: Alexander Holland <alexander.holland@live.de> | |||
2020-07-21 | Merge pull request #40450 from asmaloney/spelling | Rémi Verschelde | |
Fix spelling & grammar in comments, docs, and messages |