Age | Commit message (Collapse) | Author | |
---|---|---|---|
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. | |||
2019-10-22 | Merge pull request #32940 from nekomatata/text-edit-clear-colors | Rémi Verschelde | |
TextEdit syntax highlighting fixes | |||
2019-10-22 | Merge pull request #32965 from volzhs/richtextlabel-scroll-active | Rémi Verschelde | |
Fix scrolling RichTextLabel with scroll_active=false | |||
2019-10-22 | Fixed crashes when renaming a state in AnimationNodeStateMachineEditor | PouleyKetchoupp | |
Recursive calls to Control::_modal_stack_remove could cause a crash because of the list element not being invalidated while being erased from the list. It happens in the state machine case by hiding a line edit control when it loses focus. Fixes #23808 | |||
2019-10-22 | Merge pull request #32902 from nekomatata/auto-indent-bracket-fix | Rémi Verschelde | |
Auto-indent after opening bracket and parenthesis in the script editor | |||
2019-10-22 | Merge pull request #32864 from nekomatata/rich-text-image-size | Rémi Verschelde | |
Support for resized images in RichTextLabel | |||
2019-10-22 | Merge pull request #32833 from nekomatata/label-autowrap-fix | Rémi Verschelde | |
Allow Label autowrap to cut words when they exceed line width | |||
2019-10-21 | Fixes spinbox not releasing focus on value change | Emmanuel Barroga | |
Trying to release focus of the spinbox's lineedit would not work when done in the "value_changed" callback. The reason is because the "value_change" signal is called first, then the "get_focus" method is called next. This causes the spinbox to get_focus after you try to release focus within the "value_changed" callback. To resolve this, spinbox should get focus first and then emit "value_changed". | |||
2019-10-22 | Fix scrolling RichTextLabel with scroll_active=false | volzhs | |
2019-10-20 | TextEdit syntax highlighting fixes | PouleyKetchoupp | |
- Fixed visual update when using add_keyword_color(), add_color_region(), clear_colors() in scripts - More accurate description for clear_colors() in TextEdit documentation | |||
2019-10-20 | Fixed -1 minimap index when smooth scrolling is enabled | Paulb23 | |
2019-10-18 | Auto-indent after opening bracket and parenthesis in the script editor | PouleyKetchoupp | |
This change makes auto-indent work the same way as for curly brackets, so '[', '(', '{' all act the same. Fixes #32897 | |||
2019-10-16 | Add push_* methods for fonts in rich_text_label | Florian Bergmann | |
Provides method to push different font styles. If no fonts are set nothing will happen, when the methods are used. Fixes #27850 | |||
2019-10-16 | Support for resized images in RichTextLabel | PouleyKetchoupp | |
BBCode Tag: [img=<width>x<height>]{path}[/img] | |||
2019-10-16 | Allow Label autowrap to cut words when they exceed line width | PouleyKetchoupp | |
Fixes #30832 | |||
2019-10-15 | Merge pull request #32820 from qarmin/small_fixes_static_analyzer | Rémi Verschelde | |
Small fixes to redundand code, copy paste bugs | |||
2019-10-14 | Fix color of FileDialog icons | Yuri Roubinsky | |
2019-10-14 | Small fixes to redundand code, copy paste bugs | qarmin | |
2019-10-13 | Fix undo / redo scrollbar calulations | Paulb23 | |
2019-10-13 | Place caret at 0,0 when setting text not at the end | Paulb23 | |