Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-08-21 | Add minimap to text_edit | Paulb23 | |
2019-08-21 | Add syntax highlighting cache | Paulb23 | |
2019-08-21 | Rename FileDialog's folder icon custom color to `folder_icon_modulate` | Hugo Locurcio | |
The custom color introduced in be8d569744e4eed9acb313d355d96e6989e92087 had the same name as the "folder" icon, which could cause conflicts in the generated documentation. The new name is also more self-explanatory. | |||
2019-08-21 | Fix filter quotes wraped insert completion options | geequlim | |
2019-08-20 | Use a different color for folder icons in file dialogs | Hugo Locurcio | |
This makes them easier to distinguish from files for quick visual grepping. This can also be used in projects by setting the FileDialog "folder" color. The default value (`Color(1, 1, 1)`) has no visual impact, for compatibility with existing projects. | |||
2019-08-18 | Keep syntax highlighting on TextEdit in readonly mode | Michael Alexsander Silva Dias | |
2019-08-15 | Add an outline to box selection rectangles for better visibility | Hugo Locurcio | |
This also refactors selection box color definitions to avoid repetition. | |||
2019-08-15 | Fix autocompletion widget having its text leak outside | Michael Alexsander Silva Dias | |
2019-08-14 | Merge pull request #31266 from ↵ | Rémi Verschelde | |
IAmActuallyCthulhu/pr/remove-redundant-author-comments Remove redundant author doc comments | |||
2019-08-14 | Merge pull request #31267 from sparkart/fix_optionbutton_offset | Rémi Verschelde | |
Fix Offset with OptionButton Popup | |||
2019-08-14 | Exposed set_as_minsize to gdscript | Fabian | |
2019-08-13 | Merge pull request #31338 from Calinou/reorganize-menus | Rémi Verschelde | |
Reorganize various menus for consistency and conciseness | |||
2019-08-13 | Reorganize various menus for consistency and conciseness | Hugo Locurcio | |
- Clean up the recent scripts dialog to match the recent scenes dialog - Add "..." at the end of shortcuts that cause a modal dialog to appear This closes #31148. | |||
2019-08-12 | Fix Right-Click Menu Deselecting Edits Content | Emmanuel Barroga | |
Right-clicking a property to open the context menu deselects the text field. This causes the context menu to be useless because it doesn't have anything to edit. | |||
2019-08-12 | Remove redundant author doc comments | IAmActuallyCthulhu | |
2019-08-12 | Fix Offset with OptionButton Popup | Emmanuel Barroga | |
Fixes the offset issue with the OptionButton's popup. | |||
2019-08-09 | Merge pull request #31213 from KoBeWi/explain_scenes | Rémi Verschelde | |
Replace ERR_EXPLAIN in scene/* code | |||
2019-08-09 | Remove ERR_EXPLAIN from scene/* code | Tomasz Chabora | |
2019-08-09 | Fix Exponential Range Graphical Error | Emmanuel Barroga | |
Fixes the Exponential Range Slider having a graphical error with less than 1 values. | |||
2019-08-07 | Merge pull request #31077 from qarmin/coverity_bugs | Rémi Verschelde | |
Change some code proposed by Coverity and Cppcheck | |||
2019-08-07 | Add some code changes/fixes proposed by Coverity and Clang Tidy | qarmin | |
2019-08-06 | Implemented check_vadjust in CheckBox & CheckButton. It was exposed to the ↵ | Ken Paulson | |
editor, but wasn't used. | |||
2019-08-05 | Update WindowDialog title when translation changes | Michael Alexsander Silva Dias | |
2019-08-05 | Merge pull request #31075 from KoBeWi/right_for_acceptance | Rémi Verschelde | |
Accept also right-click event in LineEdit | |||
2019-08-04 | Accept also right-click event in LineEdit | Tomasz Chabora | |
2019-08-01 | Same method when redrawing as when theme changed | Cameron Reikes | |
2019-07-31 | Merge pull request #30972 from Chaosus/vs_copy_paste | Rémi Verschelde | |
Implement copy/paste in visual shaders | |||
2019-07-31 | Implement copy/paste in visual shaders | Chaosus | |
2019-07-30 | Fix ProgressBar Wrong Value with Border | Emmanuel Barroga | |
Closes: #30969 The FG rectangle of the progressbar is incorrect when dealing with a non-zero border. This issue stems from wrong order of operations when drawing the rectangle: int p = r * get_size().width - mp; | |||
2019-07-29 | Merge pull request #30932 from Dragoncraft89/master | Rémi Verschelde | |
Translate TabContainer titles, when inherited from node name | |||
2019-07-29 | Translate TabContainer titles, when inherited from node name | Florian Kothmeier | |
2019-07-29 | Remove useless variable and line in OptionButton | NilsIrl | |
2019-07-29 | Change if to switch in OptionButton | NilsIrl | |
2019-07-27 | Revert "Update Control margins when size is overridden by change to minsize" | Rémi Verschelde | |
2019-07-26 | Small adjustments to tooltips in '(Editor)FileDialog' | Michael Alexsander Silva Dias | |
2019-07-25 | Merge pull request #30351 from bojidar-bg/30288-override-global-theme | Rémi Verschelde | |
Keep track of default theme and project custom default theme seperatelly | |||
2019-07-25 | DirAccess: Drop compat get_next(bool *is_dir) which was hidden | Rémi Verschelde | |
Fixes this warning: ``` ./core/os/dir_access.h:74:17: warning: 'virtual String DirAccess::get_next(bool*)' was hidden [-Woverloaded-virtual] ``` Part of #30790. | |||
2019-07-23 | Inspector: Make default float step configurable | Rémi Verschelde | |
Also allow lifting the decimal step formatting with a hint range step of 0. A new `range_step_decimals()` is added for this to avoid breaking compatibility on the general purpose `step_decimals()` (which still returns 0 for an input step of 0). Supersedes #25470. Partial fix for #18251. | |||
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. |