Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-12-01 | Fixed caret alignment with placeholder text | Paulb23 | |
2019-12-01 | Fixed LineEdit alignment when removing text or undo / redo | Paulb23 | |
2019-11-26 | Range: Remove min/max check added in #33908 | Rémi Verschelde | |
This wasn't a very good idea as it puts too strict requirements on how to set `min` and `max` values. For example, since the default min and max are 0 and 100, this triggers an error: ``` set_min(256) set_max(16384) ``` Since `min` will be higher than `max` temporarily. It can be worked around by setting max first, but it's not really intuitive. I'll relax the requirement as it's only a problem in `get_as_ratio`, which already has a check. Fix another min == max occurrence. | |||
2019-11-26 | Range: Fix cases where max was set to or below min value | Rémi Verschelde | |
It will now raise an error whenever this happens so that we can fix these situations. `max == min` is not allowed as it could lead to divisions by zero in ratios, and `max < min` doesn't make much sense. Fixes #33907. | |||
2019-11-25 | Merge pull request #33869 from jbuck3/dialog-resize-bug | Rémi Verschelde | |
Fix WindowDialog moving when resized from the left/top edge | |||
2019-11-24 | Fix WindowDialog moving when resized from the left/top edge | James Buck | |
get_combined_minimum_size() must be used in order to consider the min size specified by the user when determining how far the left/top edge is allowed to move. Otherwise the dialog may think it can shrink further than it should, causing the right/bottom edge to move when the rect size is fixed in set_size(). | |||
2019-11-24 | Fixed index out of size error in TextEdit when opening scripts | PouleyKetchoupp | |
2019-11-20 | Merge pull request #33583 from qarmin/fix_overflows_unitialized | Rémi Verschelde | |
Fix some overflows and unitialized variables | |||
2019-11-20 | Fix some overflows and unitialized variables | Rafał Mikrut | |
2019-11-19 | GradientEdit: Fix index crashes | lupoDharkael | |
2019-11-15 | Make holding Ctrl toggle snapping in GraphEdit | Hugo Locurcio | |
This affects the visual script and visual shader editors as well. | |||
2019-11-12 | Fixed crash when pressing down key on empty Tree | PouleyKetchoupp | |
Fixes #33554 | |||
2019-11-10 | Merge pull request #33516 from qarmin/small_fixes | Rémi Verschelde | |
Memory leaks and crash fixes | |||
2019-11-10 | Memory leak and crash fixes | Rafał Mikrut | |
2019-11-09 | Fixed crash when using icon override in button | PouleyKetchoupp | |
Missing change for PR #33495 | |||
2019-11-09 | Fixed crash when using icon override in button | PouleyKetchoupp | |
Fixes #33457 | |||
2019-11-09 | Fixed not being able to scroll ending wrapped line | Paulb23 | |
2019-11-08 | Merge pull request #33052 from KoBeWi/naughty_sliders | Rémi Verschelde | |
Fix analog input in sliders | |||
2019-11-07 | Fix analog input in sliders | Tomasz Chabora | |
2019-11-06 | Fixes ItemList max column update | codecustard | |
When setting the max column of an ItemList, the layout does not update until it is resized. | |||
2019-11-04 | Fixed cases where labels with autowrap can overflow the editor ui | PouleyKetchoupp | |
Fixes #33155 | |||
2019-11-03 | Merge pull request #33286 from groud/fix_tree_edit_rect | Rémi Verschelde | |
Fixes the edit rect in TreeItems | |||
2019-11-03 | Fixes the edit rect in TreeItems | Gilles Roudiere | |
2019-11-02 | Make the editor dimming even more smarter | Michael Alexsander | |
2019-11-02 | Update connection info on script validation rather then saved copy | Paulb23 | |
2019-11-01 | Merge pull request #33233 from hilfazer/dollar-quoted-autocomplete | Rémi Verschelde | |
$ autocompletion keeps quotation | |||
2019-11-01 | $ autocompletion keeps quotation | hilfazer | |
2019-11-01 | Merge pull request #33202 from nekomatata/text-edit-search-usability | Rémi Verschelde | |
Improved TextEdit search usability & documentation | |||
2019-10-31 | Make the editor dimming smarter | Michael Alexsander | |
2019-10-31 | Improved TextEdit search usability & documentation | PouleyKetchoupp | |
2019-10-29 | Merge pull request #33091 from MCrafterzz/fix10567 | Rémi Verschelde | |
Improved project creation UX | |||
2019-10-29 | Improved UX of selecting directories in (Editor)FileDialog by hiding unused ↵ | MCrafterzz | |
gui elements and moving the drive selection | |||
2019-10-28 | Merge pull request #33120 from YeldhamDev/popup_dialog_panel_style | Rémi Verschelde | |
Add "panel" style to PopupDialog | |||
2019-10-28 | Merge pull request #33119 from creikey/fix-quote-malfunction | Rémi Verschelde | |
Remove duplicate quote in displayed quote type | |||
2019-10-27 | Add "panel" style to PopupDialog | Michael Alexsander | |
2019-10-27 | Remove duplicate quote in displayed quote type | Cameron Reikes | |
- fixes #32688 - fixes #32593 | |||
2019-10-27 | Merge pull request #33066 from Tabas32/fix_indentation | Rémi Verschelde | |
Fixed indenting issue with comment at end of line | |||
2019-10-27 | Improve performance of connection info in the script editor | Paulb23 | |
2019-10-27 | Merge pull request #33032 from Calinou/filedialog-scroll-to-top | Rémi Verschelde | |
Scroll back to the top after opening a directory in FileDialog | |||
2019-10-26 | Fix text minimap crash when last line is folded | Paulb23 | |
2019-10-25 | Merge pull request #32870 from bergmannf/27850_rtl_bold_italic | Rémi Verschelde | |
Add push_* methods for fonts in rich_text_label | |||
2019-10-25 | Just initialization, needed by compiler | Marian | |
2019-10-25 | Fixed indenting issue with comment at end of line | Marian | |
2019-10-24 | Don't terminate search if begin_key doesn't fit | Zatherz | |
Previously this code would continue onto the next iteration of the loop if the line was smaller in size than begin_key, meaning that a situation where begin_key.length() > end_key.length() would cause weird behavior with newlines. Now both the checks for begin_key and end_key are in their own condition and do not skip the entire iteration if they can't be found. | |||
2019-10-24 | Fix rendering tooltip | volzhs | |
2019-10-24 | Scroll back to the top after opening a directory in FileDialog | Hugo Locurcio | |
This also changes the behavior in EditorFileDialog. This closes #26041. | |||
2019-10-24 | Refactor VideoPlayer and VideoStream | SeleckyErik | |
VideoStream: - Fix const correctenss VideoPlayer: - Remove unused member variable last_frame - Move _mix_audios function definition to source file - Fix function parameter naming to match p_ convention - Fix const correctness - Add null checking | |||
2019-10-23 | Merge pull request #32972 from codecustard/fix_spinbox_not_releasingfocus | Rémi Verschelde | |
Fixes spinbox not releasing focus on value change | |||
2019-10-22 | Shadows Now Properly Translate by RichTextEffect offset. | Eoin O'Neill | |
Bugfix 32981. | |||
2019-10-22 | Merge pull request #32796 from Paulb23/set_text_caret | Rémi Verschelde | |
Changed `set_text` to place caret at start of the text. |