summaryrefslogtreecommitdiff
path: root/scene/gui
AgeCommit message (Collapse)Author
2018-12-18Merge pull request #24428 from akien-mga/label-uppercaseRémi Verschelde
Label: Fix kerning when using Uppercase mode
2018-12-17Don't accidentally convert string content to charHein-Pieter van Braam
Due to the right hand side of the :? trickery the rhs was cast to a char losing precision. Previously this didn't matter, but with CharProxy it does. (Previously we could just happily cast it back to a wchar_t and get the original 16 - 32 bits. Now we'll only ever get the first 8).
2018-12-17Label: Fix kerning when using Uppercase modeRémi Verschelde
Seemingly a typo, I did not check what exact impact it had, but the x_ofs would likely have accumulated errors when using fonts with varying char widths.
2018-12-15Fix item highlighting in PopupMenu for items with offsetMichael Alexsander Silva Dias
2018-12-14Prevent FileDialog from stealing focus when setting current file in editorKanabenki
2018-12-14Fix tree item editable cell not updating when windows was resizedGuilherme Felipe
2018-12-14Expose ButtonGroup's "get_buttons()" to GDScriptMichael Alexsander Silva Dias
2018-12-13Merge pull request #22870 from semtri/godot-issue-7620Rémi Verschelde
Fix richtextlabel meta links shouldn't open when swiping to scroll
2018-12-13Revert "Use more subtle indentation guides in the script editor"Rémi Verschelde
2018-12-12ColorPicker fixesmerumelu
- Fix regression from #22402 which made presets invisible ingame with `tools=yes` builds. - Don't emit `color_changed` signal when deleting a preset as no color change happens.
2018-12-11Merge pull request #21471 from RodZill4/issue_11893Rémi Verschelde
Fixed issue #11893 (SpinBox capturing mouse)
2018-12-11Merge pull request #23923 from bruvzg/ime_gdscriptRémi Verschelde
Changes IME to make it possible to use it from gdscript/gdnative
2018-12-10Fixed issue #11893 (SpinBox Capturing mouse)Rodolphe Suescun
To prevent the SpinBox from capturing mouse, added a "drag.allowed" variable that is set to true only when clicking inside the control. Entering the control with the left mouse button pressed will not trigger drag anymore. Also modified the value update code when dragging so it does not modify the base_val.
2018-12-09Merge pull request #20609 from YeldhamDev/menu_hover_explicitRémi Verschelde
Make opening menus with the same parent on mouse focus explicit
2018-12-09Merge pull request #20725 from Calinou/textedit-subtle-indent-guidesRémi Verschelde
Use more subtle indentation guides in the script editor
2018-12-07Merge pull request #22431 from DualMatrix/pivotRémi Verschelde
Fixed pivot tool not setting position of Controls correctly
2018-12-07Merge pull request #22680 from lupoDharkael/color-picker-presetsRémi Verschelde
ColorPicker: extend access to presets from gds
2018-12-04Add tooltips to GraphEdit nodeMichael Alexsander Silva Dias
2018-12-03Merge pull request #24112 from allkhor/rich_label_update_cacheRémi Verschelde
RichTextLabel: update the cache when the scroll hide.
2018-12-02Merge pull request #24106 from groud/fix_split_containerRémi Verschelde
Fixes collapsed SplitContainers
2018-12-02RichTextLabel: update the cache when the scroll hide.allkhor
2018-12-01Fixes collapsed SplitContainersgroud
2018-11-29TextEdit: added redo option to the context menuallkhor
2018-11-28Merge pull request #23993 from Kanabenki/autocomplete-ignore-caseRémi Verschelde
Add suggestions ignoring case at the end of the code autocomplete
2018-11-27Ceil tabs font sizeallkhor
2018-11-26Add suggestions ignoring case at the end of the code autocompleteKanabenki
2018-11-26Merge pull request #23964 from allkhor/text_edit_clear_selectionRémi Verschelde
TextEdit: remove selection when clear happens.
2018-11-25TextEdit: remove selection when clear happens.allkhor
2018-11-24Fix scroll bar lock when smooth scroll enabled, issue 23314Paulb23
2018-11-23RichTextLabel: clear the scroll offset.allkhor
2018-11-23Changes IME input to use notification instead of callback, exposes IME ↵bruvzg
methods to gdscript/gdnative.
2018-11-22Merge pull request #23680 from YeldhamDev/unified_help_search_revivedRémi Verschelde
Unified Class and Reference Search 2: Resurrection
2018-11-22Merge pull request #23731 from lupoDharkael/remove-button-tooltipRémi Verschelde
BaseButton: make input related information in the tooltip optional
2018-11-20Unify editor class and reference searchRay Koopa
Co-authored-by: Michael Alexsander Silva Dias <michaelalexsander@protonmail.com>
2018-11-20Make opening menus with the same parent on mouse focus explicitMichael Alexsander Silva Dias
2018-11-20Merge pull request #23728 from groud/keep_splitcontainer_offsetRémi Verschelde
Keep the SplitContainer offset value when it is shrinked
2018-11-19BaseButton: add shortcut_in_tooltiplupoDharkael
This flag disables the input related information in the tooltip. It is exposed as a member variable in gdscript.
2018-11-18If using relationship lines (now default) hide guides.Juan Linietsky
2018-11-16Use VScrollBar when calculating horiz. offset in ScrollContainerpshe94
Someone forgot to change `h_scroll` to `v_scroll` when copy-pasting the code ;)
2018-11-15ViewportContainer was not passing unhandled input. Pass it, fixes #17326Juan Linietsky
2018-11-15-Send mouse motion events again to CollisionObjects (Area/Body) if they ↵Juan Linietsky
move, even if mouse does not. Fixes #16536 (likely many others should check) -Add ability for viewports to set input events as handled locally
2018-11-15Keep the SplitContainer offset value when it is shrinkedgroud
2018-11-15Fix return value of get_total_character_countThomas ten Cate
Also document that it only counts visible characters. Fixes #23720
2018-11-14Always use default theme for overrides, closes #13071Juan Linietsky
2018-11-14Show theme values from default theme always, fixes #16011, fixes #13071Juan Linietsky
2018-11-11Fixed various uninitialised member variables in editor plugins.Ibrahn Sahir
2018-11-08-Moved EditorDefaultValue to ClassDB, made it coreJuan Linietsky
-Removed one and zero hints for properties, replaced by default value
2018-11-07Fixes icons in itemlist not workinggroud
2018-11-06Merge pull request #23383 from groud/better_tilemap_transformRémi Verschelde
Enhance the tilemap transform buttons
2018-11-05Fix creating a visual script virtual function after minimizing crashes #23536K. S. Ernest (iFire) Lee