aboutsummaryrefslogtreecommitdiff
path: root/scene/gui (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | Allow popup menu scrolling without mouse wheelBernhard Liebl2018-01-062-32/+28
| |/ /
* | | Remove button from button_group when freevolzhs2018-01-061-3/+3
| | |
* | | Fix theme inheritanceFabio Alessandrelli2018-01-051-2/+3
|/ /
* | Add missing copyright headers and fix formattingRémi Verschelde2018-01-0598-12/+105
| | | | | | | | | | | | Using `misc/scripts/fix_headers.py` on all Godot files. Some missing header guards were added, and the header inclusion order was fixed in the Bullet module.
* | Merge pull request #15335 from volzhs/popup-menuRémi Verschelde2018-01-041-3/+2
|\ \ | | | | | | Fix PopupMenu to show & detect properly hover area
| * | Fix PopupMenu to show & detect properly hover areavolzhs2018-01-051-3/+2
| | | | | | | | | | | | Fix #15275
* | | Merge pull request #15334 from poke1024/textedit-mouseposRémi Verschelde2018-01-041-5/+5
|\ \ \ | |/ / |/| | Fix TextEdit::_get_mouse_pos rounding errors
| * | Fix TextEdit::_get_mouse_pos rounding errorsBernhard Liebl2018-01-041-5/+5
| | |
* | | Merge pull request #15317 from poke1024/fix-rtl-underlineRémi Verschelde2018-01-041-10/+11
|\ \ \ | | | | | | | | RichTextLabel: don't draw underline character-wise
| * | | RichTextLabel: don't draw underline on single charactersBernhard Liebl2018-01-041-10/+11
| |/ /
* | | Merge pull request #15314 from poke1024/tree-rlinesRémi Verschelde2018-01-041-7/+23
|\ \ \ | | | | | | | | Tree: only draw visible relationship lines
| * | | Tree: only draw visible relationship linesBernhard Liebl2018-01-041-7/+23
| |/ /
* | | Merge pull request #15312 from poke1024/fix-rtl-table-wrapRémi Verschelde2018-01-041-4/+6
|\ \ \ | | | | | | | | Fixes word wrapping in tables in RichTextLabel
| * | | Fix word wrapping in tables in RichTextLabelBernhard Liebl2018-01-041-4/+6
| |/ /
* | | found via cppcheck:firefly24422018-01-031-2/+0
| | | | | | | | | | | | | | | | | | | | | remove code that will never run make definition and declaration names for parameters match change floats that were being set to bool values remove pointer that is never used
* | | Merge pull request #15308 from ianb96/horizontal_scrollingRémi Verschelde2018-01-041-2/+10
|\ \ \ | | | | | | | | TextEdit horizontal scrolling with shift
| * | | TextEdit horizontal scrolling with shiftIan2018-01-031-2/+10
| | | |
* | | | Fix crash in OS::execute on FreeBSDRémi Verschelde2018-01-041-0/+1
| | | | | | | | | | | | | | | | | | | | As spotted by @robfram, closes #15288. Also reviewed other uses of `if (String.find(.*))` for potential similar mistakes, found a wrong (and useless) one in ScriptEditorDialog.
* | | | Merge pull request #15191 from Jerome67000/z_renamingRémi Verschelde2018-01-041-6/+6
|\ \ \ \ | |_|/ / |/| | | renames "z" Node2D property to "z_index"
| * | | #15078 renamed "z" -> "z_index" property in Node2DJerome670002018-01-031-6/+6
| | | |
* | | | Merge pull request #15127 from poke1024/smooth-scroll-playRémi Verschelde2018-01-031-4/+19
|\ \ \ \ | | | | | | | | | | Remove some lagginess from TextEdit's smooth scrolling
| * | | | Remove some lagginess from TextEdit's smooth scrollingBernhard Liebl2017-12-281-4/+19
| |/ / /
* | | | Merge pull request #15103 from poke1024/lineedit-key-up-downRémi Verschelde2018-01-031-0/+12
|\ \ \ \ | | | | | | | | | | Support KEY_UP and KEY_DOWN in LineEdit
| * | | | Support KEY_UP and KEY_DOWN in LineEditBernhard Liebl2017-12-271-0/+12
| | | | |
* | | | | Merge pull request #15063 from poke1024/textedit-select-last-lineRémi Verschelde2018-01-032-2/+29
|\ \ \ \ \ | | | | | | | | | | | | Fix key down on last line in TextEdit
| * | | | | Fix shift-key down on last line in TextEditBernhard Liebl2017-12-262-2/+29
| | | | | |
* | | | | | Merge pull request #14792 from Krakean/enh-1Rémi Verschelde2018-01-032-0/+13
|\ \ \ \ \ \ | |_|_|_|/ / |/| | | | | A few small Debugger->Errors tab enhancements:
| * | | | | A few small Debugger->Errors tab enhancements:Dmitry Koteroff2017-12-182-0/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1. Added "Clear" button to clear list. 2. Errors list now populated with newest items comes first, so no need to scroll everytime. 3. Added PopupMenu to errors list with ability to quickly Copy error text & details.
* | | | | | Merge pull request #14983 from Paulb23/keyboard_selection_issue_14675Rémi Verschelde2018-01-021-24/+18
|\ \ \ \ \ \ | |_|_|_|_|/ |/| | | | | Fixed keyboard word selection when at the start/end of line, issue 14675
| * | | | | Fixed keyboard word selection when at the start/end of line, issue 14675Paulb232017-12-231-24/+18
| | |_|/ / | |/| | |
* | | | | Update copyright statements to 2018Rémi Verschelde2018-01-0198-196/+196
| | | | | | | | | | | | | | | | | | | | Happy new year to the wonderful Godot community!
* | | | | Merge pull request #14972 from poke1024/fix-unindent-col-0Noshyaar2018-01-011-13/+31
|\ \ \ \ \ | | | | | | | | | | | | Fix unindent (shift-tab) on column 0
| * | | | | Fix unindent (shift-tab) on column 0 and moreBernhard Liebl2017-12-281-13/+31
| |/ / / /
* | | | | Merge pull request #14973 from poke1024/docs-word-selectionNoshyaar2018-01-012-37/+37
|\ \ \ \ \ | | | | | | | | | | | | Double-click word selection for RichTextLabel (i.e. docs)
| * | | | | Double-click word selection for RichTextLabel (i.e. docs)Bernhard Liebl2017-12-282-37/+37
| |/ / / /
* | | | / Fix TreeItem cell text alignmentyanorax2017-12-291-2/+2
| |_|_|/ |/| | |
* | | | Merge pull request #14991 from djrm/pr_fixesNoshyaar2017-12-271-1/+2
|\ \ \ \ | | | | | | | | | | Show Options Dialog for NodePath and File in clicked button position.
| * | | | Show Options Dialog for NodePath and File in clicked button position.Daniel J. Ramirez2017-12-231-1/+2
| |/ / / | | | | | | | | | | | | Auto select newly created nodes.
* | | | Merge pull request #15046 from YeldhamDev/optionbutton_changesNoshyaar2017-12-272-32/+39
|\ \ \ \ | | | | | | | | | | Added "get_popup" method for OptionButton
| * | | | Added "get_popup" method for OptionButton and minor changes.Michael Alexsander Silva Dias2017-12-252-32/+39
| | | | |
* | | | | Merge pull request #15049 from YeldhamDev/get_popup_constNoshyaar2017-12-274-29/+12
|\ \ \ \ \ | | | | | | | | | | | | Made MenuButton and ColorPickerButton's "get_popup" methods return constant
| * | | | | Made MenuButton and ColorPickerButton's "get_popup" methods return constant.Michael Alexsander Silva Dias2017-12-254-29/+12
| | |_|_|/ | |/| | |
* | | | | fix indent selection crashIan2017-12-261-10/+8
| | | | |
* | | | | Removed the InputEvent ID field, which was unused and can cause bugs.Juan Linietsky2017-12-262-4/+4
|/ / / /
* / / / Add missing parameter namesPoommetee Ketson2017-12-251-1/+1
|/ / /
* | | Merge pull request #14826 from carlosfvieira/14371-F_key_Viewport_focus_problemNoshyaar2017-12-252-0/+14
|\ \ \ | | | | | | | | Fix spatial editor plugin issues on multi viewport view menu shortcuts (only those that are bound to keys)
| * | | Fix spatial editor plugin issues on multi viewport view menu shortcuts (only ↵carlosfvieira2017-12-212-0/+14
| | | | | | | | | | | | | | | | | | | | | | | | those that are bound to keys) - this closes #14371 and closes #12409 Fix spatial editor plugin issues on multi viewport view menu shortcuts (only those that are bound to keys) - this closes #14371 and closes #12409
* | | | Merge pull request #14853 from MattUV/context-menuNoshyaar2017-12-252-0/+42
|\ \ \ \ | | | | | | | | | | Adds an option to move cursor with right click in TextEdit
| * | | | Adds an option to move cursor with right click in TextEditMattUV2017-12-202-0/+42
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #14832 - Added an option in the editor settings/cursor to make the cursor move with right click. - If the option is activated (true by default), a right click will move the cursor before displaying context menu. - If there is a selection, a right click on it will keep it selected, a right click outside it will unselect it. - The option is available in textEdit via an inspector property (or via GDScript): caret_moving_by_right_click - The option is available in the script editor and the shader editor via the editor settings - The documentation has been updated with the new property, and a few other entries in TextEdit.xml.
* | | | Merge pull request #14875 from YeldhamDev/splitcontainer_cursorNoshyaar2017-12-252-41/+29
|\ \ \ \ | | | | | | | | | | Fixed SplitContainer showing the "resize" cursor when it shouldn't