summaryrefslogtreecommitdiff
path: root/scene/gui
AgeCommit message (Collapse)Author
2019-01-28Small fixup on button toggle behaviour in ColorPickerMichael Alexsander Silva Dias
2019-01-27Make some small enhancements to the ColorPickerMichael Alexsander Silva Dias
2019-01-24Updates containers minimum size when some constants are modifiedgroud
2019-01-24ProgressBar: Set default step to 0.01Rémi Verschelde
Fixes #22655.
2019-01-23Merge pull request #25190 from 99alfie/masterRémi Verschelde
Fix ButtonGroup.get_pressed_button bug
2019-01-21Merge pull request #25064 from homer666/itemlist-adjust-ui_select-precedenceRémi Verschelde
ItemList: ignore `ui_select` action if Select Mode is not "Multi"
2019-01-21ButtonGroup.get_pressed_button bugfix, fixes issue #25057Kraus
2019-01-18Fix a rounding error in ColorPickerHugo Locurcio
This closes #25063.
2019-01-18ItemList: ignore `ui_select` action if Select Mode is not "Multi"homer666
2019-01-16Appease some CppCheck warns for files in the "scene" directoryMichael Alexsander Silva Dias
2019-01-16Update rect size on selectvolzhs
2019-01-14Defer activated signal after tree has been traversed.Juan Linietsky
2019-01-14Hide visible popups by default if visible when entering tree, unless on ↵Juan Linietsky
editor. Fixes #24737
2019-01-08Update IME text only for focused input controls.bruvzg
2019-01-06Fix jumping when scrolling down fast with smooth scroll enabledTimo Schwarzer
Fixes #24773
2019-01-05Fix text edit wrapping beyond control size, issue 23896Paulb23
2019-01-04Merge pull request #24738 from timoschwarzer/24725-fit-child-in-rect-null-checkRémi Verschelde
Check if p_child is not null in Container.fit_child_rect()
2019-01-03Check if p_child is not null in Container.fit_child_rect()Timo Schwarzer
Fixes #24725
2019-01-03Merge pull request #24683 from SoIAS/autocompletion_menu_position_24674Rémi Verschelde
Fixed autocompletion menu vertical position
2019-01-03Fixed autocompletion menu vertical positionDawid Wdowiak
2019-01-02Make GraphEdit lines smoother and scale their width on hiDPI displaysHugo Locurcio
2019-01-01Update copyright statements to 2019Rémi Verschelde
Happy new year to the wonderful Godot community!
2018-12-27Merge pull request #24588 from volzhs/tree-relationship-lineRémi Verschelde
Draw relationship lines when its value is higher than 0
2018-12-27doc: Sync classref with current sourceRémi Verschelde
Fix various code formatting issues and argument names.
2018-12-27Merge pull request #24566 from ↵Rémi Verschelde
thomasruiz/fix/completion-box-center-text-vertically Center lines vertically in completion box
2018-12-25Draw relationship lines when its value is higher than 0volzhs
2018-12-23Fix caret size with font smaller than row heightThomas Ruiz
2018-12-23Center lines vertically in completion boxThomas Ruiz
2018-12-18Fix Word wrap cache desync causing crashPaulb23
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