Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-12-10 | Removed unused variables, add some constants numbers | Rafał Mikrut | |
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-24 | Fixed index out of size error in TextEdit when opening scripts | PouleyKetchoupp | |
2019-11-09 | Fixed not being able to scroll ending wrapped line | Paulb23 | |
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-10-31 | Improved TextEdit search usability & documentation | PouleyKetchoupp | |
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 | 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-26 | Fix text minimap crash when last line is folded | Paulb23 | |
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-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 #32902 from nekomatata/auto-indent-bracket-fix | Rémi Verschelde | |
Auto-indent after opening bracket and parenthesis in the script editor | |||
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-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 | |
2019-10-07 | Fixed inserting text at caret not updating scrollbar size | Paulb23 | |
2019-10-07 | Fixed drawing the caret at eol when at eol is not visible | Paulb23 | |
2019-09-27 | TextEdit: Fix timer inside tree warning | lupoDharkael | |
2019-09-25 | Merge pull request #32051 from qarmin/some_error_explanation | Rémi Verschelde | |
Added some obvious errors explanations | |||
2019-09-25 | Added some obvious errors explanations | qarmin | |
2019-09-23 | Merge pull request #32232 from Paulb23/issue_32070_goto_doc_when_selecting | Rémi Verschelde | |
Fixed going to doc reference while selecting text | |||
2019-09-22 | Merge pull request #29895 from ptrojahn/menukey | Rémi Verschelde | |
Support menu key in TextEdit and LineEdit controls | |||
2019-09-22 | Support menu key in TextEdit and LineEdit controls | Paul Trojahn | |
Related to #15542 | |||
2019-09-21 | Fixed going to doc reference while selecting text | Paulb23 | |
2019-09-20 | Merge pull request #32190 from KoBeWi/undo_redo_stuff | Rémi Verschelde | |
Fix autocompletion undo | |||
2019-09-20 | Merge pull request #32150 from luzpaz/typos | Rémi Verschelde | |
Fix misc. source comment typos | |||
2019-09-19 | Fix misc. source comment typos | luz.paz | |
Found using `codespell -q 3 -S ./thirdparty,*.po -L ang,ba,cas,dof,doubleclick,fave,hist,leapyear,lod,nd,numer,ois,paket,seeked,sinc,switchs,te,uint -D ~/Projects/codespell/codespell_lib/data/dictionary.txt ` | |||
2019-09-19 | Merge pull request #31188 from codecustard/LineEdit_disable_shortcuts | Rémi Verschelde | |
Add Ability to Enable/Disable Shortcuts and Selection for LineEdit/TextEdit | |||
2019-09-18 | Fix autocompletion undo | Tomasz Chabora | |
2019-09-07 | Add Ability to Enable/Disable Shortcuts for LineEdit/TextEdit | Emmanuel Barroga | |
This PR adds the ability to enable/disable shortcut keys and selection for LineEdit/TextEdit. It also updates the context menu when you disable/enable the shortcut keys or selection. | |||
2019-09-04 | TextEdit & LineEdit caret blink timers run only when focused (fixes #31936) | PouleyKetchoupp | |
2019-09-02 | Fix editor infinit loop in search_prev | amakarenko | |
Fixes godotengine#31328 | |||
2019-09-02 | Fix multiline texts not updating its contents correctly in the inspector | Michael Alexsander Silva Dias | |
2019-08-31 | Fix minimap drag when height is less then control size | Paulb23 | |
2019-08-30 | Merge pull request #31803 from KoBeWi/minicursor | Rémi Verschelde | |
Don't change cursor when minimap is disabled | |||
2019-08-30 | Don't change cursor when minimap is disabled | Tomasz Chabora | |
2019-08-30 | Perform symbol lookup on button release | Tomasz Chabora | |
2019-08-26 | Fix Multiline texts not updating correcly inside arrays | Michael Alexsander Silva Dias | |
2019-08-25 | Merge pull request #31496 from nekomatata/fix-text-edit-insert-selection | Rémi Verschelde | |
Update TextEdit selection when inserting line |