Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-07-20 | Merge pull request #30576 from qarmin/lgtm_coverage | Rémi Verschelde | |
Changed some code reported by LGTM and Coverity | |||
2019-07-20 | Changed some code showed in LGTM and Coverage | qarmin | |
2019-07-15 | Fix incorrect caret position when clicking a 'LineEdit' with a non-left ↵ | Michael Alexsander Silva Dias | |
alignment | |||
2019-07-13 | Fix GraphNode immediately losing focus | Emmanuel Barroga | |
Closes: #30243 GraphNode immediately loses focus, and gives focus to its parent. This fix changes implementation so that it does not transfer focus to its parent after receiving focus. Instead, it will transfer focus when the "close button" is pressed. | |||
2019-07-10 | Merge pull request #30455 from qarmin/const_reference | Rémi Verschelde | |
Pass by reference to const | |||
2019-07-10 | Use reference to constant in functions | qarmin | |
2019-07-10 | Fix incorrect X position of line length guideline | Shiqing | |
2019-07-09 | TreeItem: Rename new button disable method to set_button_disabled | Rémi Verschelde | |
Follow-up to #30408. Also sync classref with current source. | |||
2019-07-09 | Merge pull request #28190 from griant/test | Rémi Verschelde | |
fix improper uncommenting behavior in TextEditor | |||
2019-07-09 | Merge pull request #30443 from Calinou/improve-node-configuration-warnings | Rémi Verschelde | |
Improve the node configuration warning display | |||
2019-07-09 | Improve the node configuration warning display | Hugo Locurcio | |
- Refer to properties explicitly when possible - When multiple warnings are returned, always separate them by one blank line to make them easier to distinguish - Improve grammar and formatting | |||
2019-07-08 | Use base `Color()` constructors instead of `Color::html()` | Hugo Locurcio | |
This results in slightly smaller binaries (-17 KB for an editor binary) as no strings need to be allocated. | |||
2019-07-08 | Merge pull request #30408 from Meriipu/tree_buttondisable | Rémi Verschelde | |
TreeItem: Added a setter for the disabled-property of buttons | |||
2019-07-08 | Merge pull request #30407 from qarmin/small_fixess | Rémi Verschelde | |
Fixes minor issues found by static analyzer | |||
2019-07-07 | Fixes minor issues found by static analyzer | qarmin | |
2019-07-07 | TreeItem: Added a setter for the disabled-property of buttons | Meriipu | |
2019-07-06 | Merge pull request #30371 from creikey/fix-30366 | Rémi Verschelde | |
Give up finding item if started at beginning | |||
2019-07-06 | Fix editor remaining dimmed after certain actions | Bojidar Marinov | |
Fixes #30368 | |||
2019-07-05 | Give up finding item if started at beginning | Cameron Reikes | |
When the current item is -1, then the loop will infinitely repeat, constantly setting i to zero and never exiting. | |||
2019-07-06 | Fix light area position in the selected completion | geequlim | |
2019-07-05 | Show icons for code completion options | Geequlim | |
2019-07-01 | Merge pull request #30126 from qarmin/remove_unnecessary_code | Rémi Verschelde | |
Remove unnecessary code and add some error explanations | |||
2019-07-01 | Merge pull request #29572 from qarmin/fix_text_edit_select | Rémi Verschelde | |
Fix TextEdit Select crash | |||
2019-07-01 | Remove unnecessary code and add some error explanations | qarmin | |
2019-07-01 | Merge pull request #30146 from Chaosus/editor_file_dlg_ex | Rémi Verschelde | |
Auto-change file extension in EditorFileDialog when filter changes | |||
2019-07-01 | Merge pull request #30161 from Calinou/add-tooltip-mouse-filter-warning | Rémi Verschelde | |
Add a configuration warning when using Ignore mouse filter with tooltip | |||
2019-06-30 | Draw the script editor's line length guideline below characters | Hugo Locurcio | |
This prevents characters from looking strange if they cross the line length guideline. | |||
2019-06-30 | Add a configuration warning when using Ignore mouse filter with tooltip | Hugo Locurcio | |
This closes #30144. | |||
2019-06-30 | Merge pull request #30062 from zaksnet/fix-referencerect-node | Rémi Verschelde | |
Adds ReferenceRect an option to be visible inside the game | |||
2019-06-29 | Merge pull request #30168 from Calinou/label-font-shadow-use-outline | Rémi Verschelde | |
Draw the outline as part of the Label font shadow | |||
2019-06-28 | Draw the outline as part of the Label font shadow | Hugo Locurcio | |
This closes #30165. | |||
2019-06-28 | Auto-change file extension in EditorFileDialog when filter changes | Chaosus | |
2019-06-28 | Fix some bugs inside ColorPicker | Chaosus | |
2019-06-28 | Fix ReferenceRect node | Zak | |
ReferenceRect node by default was only displaying in the editor and not when the game is running. | |||
2019-06-27 | Merge pull request #30114 from Chaosus/vs_context_menu | Rémi Verschelde | |
Shows menu when dragging connection on empty space in visual shader | |||
2019-06-27 | Shows menu when dragging connection on empty space in visual shader graph | Chaosus | |
2019-06-27 | Merge pull request #29941 from qarmin/redundant_code_and_others | Rémi Verschelde | |
Remove redundant code, possible NULL pointers and others | |||
2019-06-26 | Some code changed with Clang-Tidy | qarmin | |
2019-06-25 | Merge pull request #30053 from guilhermefelipecgs/fix_popup_centered | Rémi Verschelde | |
Fix Popup::popup_centered not centralizing at the first call | |||
2019-06-25 | Fix Popup::popup_centered not centering at the first call | Guilherme Felipe | |
2019-06-25 | Merge pull request #30002 from GlaceGwyneth/master | Rémi Verschelde | |
Give LineEdit/TextEdit a custom color for font while uneditable | |||
2019-06-25 | Merge pull request #29979 from flomar/master | Rémi Verschelde | |
Line edit placeholders now react properly to translation changes. | |||
2019-06-24 | Give TextEdit a custom color for font when read only is set | Gwyneth Lowe | |
Previously there was some transparency hard coded into TextEdit when in read only mode. This change adds a custom color for adjusting the font in read only mode. It also applies when syntax highlighting is on. | |||
2019-06-24 | Give LineEdit a custom font color when un-editable | Gwyneth Lowe | |
By default the LineEdit's text when editable is unchecked had some transparency hardcoded. This change adds a custom color to LineEdit for adjusting the font when editable is off. Addresses issue 29814 | |||
2019-06-24 | Line edit placeholders now react properly to translation changes. | Florian Marchal | |
2019-06-24 | Merge pull request #29913 from eligt/fix-editor-help | Rémi Verschelde | |
Ensure indentation works properly in rich text | |||
2019-06-24 | Merge pull request #30009 from Anutrix/tree-icons-height-fix | Rémi Verschelde | |
Fixed script and visibility icons's highlight height in tree | |||
2019-06-24 | Correct typo that broke custom selected font color | Gwyneth Lowe | |
Change several font_selected_color to font_color_selected; the actual name of the override | |||
2019-06-23 | Fixed script and visibility icons's highlight height in tree | unknown | |
2019-06-23 | Center script line when double clicked on error in debugger | Dawid Wdowiak | |