summaryrefslogtreecommitdiff
path: root/scene/gui
AgeCommit message (Collapse)Author
2019-09-23Merge pull request #32232 from Paulb23/issue_32070_goto_doc_when_selectingRémi Verschelde
Fixed going to doc reference while selecting text
2019-09-23Merge pull request #32055 from qarmin/some_code_fixesRémi Verschelde
Changed some code found by Clang Tidy and Coverity
2019-09-23Merge pull request #32048 from YeldhamDev/lineedit_right_icon_fixRémi Verschelde
Expose LineEdit's 'right_icon' and fix icon size
2019-09-23Merge pull request #32003 from codecustard/fix_optionbutton_not_selectingRémi Verschelde
Fixes OptionButton Not Updating Current Selection
2019-09-22Merge pull request #29895 from ptrojahn/menukeyRémi Verschelde
Support menu key in TextEdit and LineEdit controls
2019-09-22Changed some code found by Clang Tidy and Coverityqarmin
2019-09-22Support menu key in TextEdit and LineEdit controlsPaul Trojahn
Related to #15542
2019-09-21Expose LineEdit's 'right_icon' and fix icon sizeMichael Alexsander Silva Dias
2019-09-21Fixed going to doc reference while selecting textPaulb23
2019-09-20Merge pull request #32206 from Calinou/remove-unused-tree-constantsRémi Verschelde
Remove an unused icon and constant in Tree
2019-09-20Remove an unused icon and constant in TreeHugo Locurcio
2019-09-20Merge pull request #32190 from KoBeWi/undo_redo_stuffRémi Verschelde
Fix autocompletion undo
2019-09-20Merge pull request #32197 from YeldhamDev/fix_multiple_modals_dimRémi Verschelde
Fix editor dimming being disabled when a dialog is closed even when others are open
2019-09-20Merge pull request #32150 from luzpaz/typosRémi Verschelde
Fix misc. source comment typos
2019-09-20Load overrides if getting style from current classTomasz Chabora
2019-09-19Fix misc. source comment typosluz.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-19Merge pull request #31188 from codecustard/LineEdit_disable_shortcutsRémi Verschelde
Add Ability to Enable/Disable Shortcuts and Selection for LineEdit/TextEdit
2019-09-19Fix editor dimming being disabled when a dialog is closed even when others ↵Michael Alexsander Silva Dias
are open
2019-09-18Fix autocompletion undoTomasz Chabora
2019-09-11Fix Sanitization BugEoin O'Neill
From issue #32089 -- I messed up the property hints by putting them in the wrong location. Should be working as intended now.
2019-09-07Add Ability to Enable/Disable Shortcuts for LineEdit/TextEditEmmanuel 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-05Fixes OptionButton Not Updating if Current Selection Already SelectedEmmanuel Barroga
When the option button's current selection is updated to a different text/icon, the selected option does not update until you unselect the option and then select it again.
2019-09-04Bug Fix 31973 Type Hint ErrorEoin O'Neill
Fixed a bug introduced in my previous PR involving CharFXTransform not allowing the use of type hinting. Should now work properly. This should also help with Godot Mono issues...
2019-09-04Merge pull request #23658 from Eoin-ONeill-Yokai/rich-text-plusRémi Verschelde
RichTextLabel - New Real Time Text Effects and Custom BBCode Extensions
2019-09-04TextEdit & LineEdit caret blink timers run only when focused (fixes #31936)PouleyKetchoupp
2019-09-03Update RichTextLabel to support real time effects and custom BBCodes.Eoin O'Neill
Added a new ItemFX type to RichTextLabel which supports dynamic text effects. RichTextEffect Resource Type was added which can be extended for more real time text effects.
2019-09-03Merge pull request #31844 from 2shady4u/TweenInSceneTreeRémi Verschelde
Timer and Tween check if they are in SceneTree when starting
2019-09-03Added is_inside_tree() check in both Timer and Tweenshaderbeast
Tween now throws error and doesnt even execute.
2019-09-03Merge pull request #31295 from fstiewitz/focus-rect-issueRémi Verschelde
Fix get_meta error and visual bug when editing scene with keyboard
2019-09-03Merge pull request #31507 from YeldhamDev/button_icon_expandRémi Verschelde
Add feature to Button to make its icon expand/shrink with the button's size
2019-09-03Merge pull request #31782 from aole/persist-ColorPicker-color-modeRémi Verschelde
Persist ColorPicker color mode
2019-09-02Merge pull request #31889 from Calinou/gradient-editor-add-snappingRémi Verschelde
Implement snapping in the Gradient editor
2019-09-02Fix editor infinit loop in search_prevamakarenko
Fixes godotengine#31328
2019-09-02Implement snapping in the Gradient editorHugo Locurcio
Holding Ctrl will snap the selected point's position by increments of 0.1. Holding Ctrl + Shift will snap by increments of 0.025 instead. The previous behavior is preserved when holding just Shift (snapping to other gradient points).
2019-09-02Fix multiline texts not updating its contents correctly in the inspectorMichael Alexsander Silva Dias
2019-09-01Ignore size of hidden scrollbars in ScrollContainerTomasz Chabora
2019-09-01Fix resizer icon visiblity on light theme in GraphNodeChaosus89
2019-08-31Merge pull request #31828 from Paulb23/minimap_drag_less_then_controlRémi Verschelde
Fix minimap drag when height is less then control size
2019-08-31Merge pull request #31825 from fstiewitz/viewport-container-inputRémi Verschelde
Fix object picking inside ViewportContainers
2019-08-31Fix minimap drag when height is less then control sizePaulb23
2019-08-31process unhandled input in ViewportContainerFabian Stiewitz
2019-08-31Default ColorPicker color mode settingBhupendra Aole
There is a new setting for Default ColorPicker color mode in Editor Settings->Interface->Inspector. Initially this setting will be RGB. Editor ColorPicker will always start with mode defined in this settiing. Fixes #30755 and #30754
2019-08-30Merge pull request #31803 from KoBeWi/minicursorRémi Verschelde
Don't change cursor when minimap is disabled
2019-08-30Merge pull request #31797 from KoBeWi/release_the_lookupRémi Verschelde
Perform symbol lookup on button release
2019-08-30Don't change cursor when minimap is disabledTomasz Chabora
2019-08-30Merge pull request #31796 from Chaosus/fix_iconsRémi Verschelde
Fixed GraphEdit header icons to make them update when theme is changed
2019-08-30Perform symbol lookup on button releaseTomasz Chabora
2019-08-30Merge pull request #31792 from Calinou/spinbox-expression-ignore-prefix-suffixRémi Verschelde
Ignore the prefix and suffix in the SpinBox expression
2019-08-30Fixed GraphEdit header icons to make them update when theme is changedChaosus89
2019-08-30Merge pull request #30927 from mahubu/console-multi-selection-cursorRémi Verschelde
Change cursor to multi-selection cursor when selecting text in RichTextLabel