summaryrefslogtreecommitdiff
path: root/scene/gui
AgeCommit message (Collapse)Author
2022-07-06Refactor Font configuration and import UI, and Font resources.bruvzg
2022-07-06Disable Expand by default in VideoStreamPlayerHugo Locurcio
This ensures videos are always visible as soon as a video file is specified in the VideoStreamPlayer node. The node will no longer be resized to 0×0 by default, making the video invisible in the process (even if the audio can still be heard).
2022-07-05Merge pull request #62721 from Nolkaloid/line_edit-caret-blink-fixRémi Verschelde
Change LineEdit caret blink to use internal process
2022-07-05Change LineEdit caret blink to use processNolkaloid
Now using internal process for blinking instead of a Timer node
2022-07-04Allow to disable TextEdit vertical scrollkobewi
2022-07-04Merge pull request #62448 from MinusKube/completion-scroll-clickRémi Verschelde
Add the ability to drag the code completion scrollbar using the mouse click
2022-07-04Fix FileDialog file name autocompletion with filtersThakee Nathees
Fixes #38195.
2022-07-03Add the ability to drag the code completion scrollbar using the mouse clickMinusKube
2022-07-01Merge pull request #59089 from KoBeWi/I_am_rootRémi Verschelde
Add `root_subfolder` to FileDialog
2022-07-01Fix find_next_valid_focus() freezekobewi
2022-06-30Fix find_next_valid_focus() freezekobewi
2022-06-28Use single-precision floats in GradientEditTechnoPorg
Gradient itself only uses single-precision floats, so using double-precision floats in GradientEdit is both unnecessary, and creates casting issues.
2022-06-28Add root_subfolder to FileDialogkobewi
2022-06-27Add a const call mode to Object, Variant and Script.K. S. Ernest (iFire) Lee
For this to work safely (user not call queue_free or something in the expression), a const call mode was added to Object and Variant (and optionally Script). This mode ensures only const functions can be called, making it safe to use from the editor. Co-Authored-By: reduz <reduzio@gmail.com>
2022-06-27Merge pull request #37764 from KoBeWi/video_pauserRémi Verschelde
2022-06-27Merge pull request #61587 from YuriSizov/control-fix-theme-owner-toplevelRémi Verschelde
Fix theme propagation for children of top level controls and windows
2022-06-26Merge pull request #62221 from ConteZero/drag_and_drop_optionRémi Verschelde
Add an option to drag'n'drop selected text in ``TextEdit``
2022-06-26Add an option to drag'n'drop selected text in TextEditConteZero
2022-06-26Properly handle game pause in VideoPlayerkobewi
2022-06-25Merge pull request #61435 from nathanfranke/tab-container-repaintRémi Verschelde
repaint tab container when changing tab visibility (fixes filesystem tab disappearing)
2022-06-25Merge pull request #62311 from KoBeWi/anulujRémi Verschelde
Replace some TTRCs with RTRs
2022-06-25Fix ProgressBar's minimum size not updating when toggling its percent_visibleRindbee
2022-06-23repaint tab container when changing tab visibilityNathan Franke
2022-06-23enhancement: rename exposed property Control::minimum_size to ↵Pierre-Thomas Meisels
Control::custom_minimum_size
2022-06-22Replace some TTRCs with TTRskobewi
2022-06-20Improve TileSet editor and add more suffixesFireForge
2022-06-16Move duplicate AutoWrap, Overrun and VisibleChar behavior enums to the ↵bruvzg
TextServer.
2022-06-15Merge pull request #61997 from Rindbee/fix-ColorPicker-wrong-samplingRémi Verschelde
Fix wrong sampling in ColorPicker
2022-06-15Expose PopupMenu set/get_item_horizontal_offset()FireForge
- Renames setter from set_item_h_offset() - Adds getter
2022-06-15Fix the bug that the sampling position is reversed, make eyedrop reusable.Rindbee
2022-06-14Add vector value linkingkobewi
Co-authored-by: redlamp <244062+redlamp@users.noreply.github.com>
2022-06-13Merge pull request #61819 from bruvzg/button_overrunRémi Verschelde
2022-06-13Merge pull request #61842 from bruvzg/popup_fixes_swRémi Verschelde
2022-06-13[RTL] Fix underline/overline/strikethrough interaction with the "visible ↵bruvzg
characters" property.
2022-06-13Single-window mode popups and edited scene windows fixes.bruvzg
Fix single-window mode popup not closing when OptionBox is clicked. Fix single-window mode submenus closing when parent menu item, that was used to open it is clicked (using same safe-area logic as platform specific code). Disallow windows that are part of an edited scene from being set as exclusive or popup to prevent it from locking up the editor.
2022-06-11Add suffixes to all nodes and resourcesFireForge
2022-06-10Fix setting line edit caret after dobule and triple clickiwek
2022-06-08Add overrun behavior to the Button.bruvzg
2022-06-07Merge pull request #59786 from V-Sekai/ok_colorRémi Verschelde
Allow picking similar colours using OKHSL.
2022-06-07Allow picking similar colours using OKHSL.K. S. Ernest (iFire) Lee
2022-06-07Merge pull request #61726 from YeldhamDev/always_clearRémi Verschelde
Take into account the clear icon's size even when not visible in `LineEdit`s
2022-06-06[RTL] Stop processing thread before deleting scroll bar.bruvzg
2022-06-06Merge pull request #61724 from iwek7/fixing_rich_text_labelRémi Verschelde
Fix richTextLabel scroll showing
2022-06-05Fix richTextLabel scroll showingiwek
2022-06-05Take into account the clear icon's size even when not visible in `LineEdit`sMichael Alexsander
2022-06-05Fix strange behavior with list close tags and empty list tagsRindbee
Fix the first two points in #61621. Support for two writing ways: compact or loose. The loose one is designed for easy editing in the editor. For this, the first blank line (if exists) right after the list tags (`[ol]`, `[/ol]`, `[ul]`, and `[/ul]`) will be ignored. Make sure the empty list contains at least one item, that is, an empty list is ultimately a list with one item. As a reminder here is a list.
2022-06-02Merge pull request #61631 from iwek7/redundant_min_callRémi Verschelde
2022-06-02Remove redundant min call when setting lineiwek
2022-06-02Fix enclosed nodes calculation of GraphEdit comment nodesHendrik Brucker
2022-06-01Fix theme propagation for children of top level controls and windowsYuri Sizov