summaryrefslogtreecommitdiff
path: root/scene/gui
AgeCommit message (Collapse)Author
2021-05-18Merge pull request #47544 from pycbouh/control-expose-theme-typeRémi Verschelde
2021-05-18Merge pull request #46773 from trollodel/TreeItem+Rémi Verschelde
Improve TreeItem API and allow to move nodes
2021-05-18Merge pull request #48528 from sent44/texteditRémi Verschelde
Expose get_total_visible_rows method to GDScript
2021-05-17Improve TreeItem API and allow to move nodestrollodel
2021-05-17Fix build after mismatch between #48168 and #48599Rémi Verschelde
2021-05-17Merge pull request #48599 from Calinou/textedit-alt-scroll-fasterRémi Verschelde
Scroll faster when holding Alt in TextEdit (and script editor)
2021-05-17Merge pull request #48168 from LightningAA/control-to-ctrl-4.0Rémi Verschelde
2021-05-17Add theme_custom_type property to Control and WindowYuri Sizov
2021-05-17Merge pull request #48690 from KoBeWi/static_shader_pickerRémi Verschelde
Create ColorPicker shaders statically
2021-05-17Create ColorPicker shaders staticallykobewi
2021-05-16Merge pull request #48760 from timothyqiu/tree-crashRémi Verschelde
Fix Tree::get_column_at_position crash
2021-05-16Merge pull request #48650 from AnilBK/graph-node-settersRémi Verschelde
Added GraphNode missing setters.
2021-05-16Fix Tree::get_column_at_position crashHaoyu Qiu
2021-05-13Attempt to fix rich text label effects processing even whenEoin O'Neill
the node is invisible. ISSUE:47687
2021-05-13-Added missing setters to GraphNode.Anilforextra
-Improved various GraphNode documentation.
2021-05-13Fix variable names for "usage" flags in `Control::_get_property_list()`Andrii Doroshenko (Xrayez)
Renamed incorrect "hint" variable names to "usage" in `_get_property_list()`, as "hint" implies one of the PROPERTY_HINT_* values, which is not the case here.
2021-05-10Implement reverting to the old color when clicking it in ColorPickerHugo Locurcio
2021-05-10Scroll faster when holding Alt in TextEdit (and script editor)Hugo Locurcio
This feature is inspired by a similar feature found in Visual Studio Code.
2021-05-09Merge pull request #48579 from Calinou/tree-fix-bg-focus-section-overlapRémi Verschelde
Fix Tree's background focus outline displaying behind section headings
2021-05-09Merge pull request #48539 from KoBeWi/cant_edit_thisRémi Verschelde
Display arrow cursor if text is not editable
2021-05-09Fix Tree's background focus outline displaying behind section headingsHugo Locurcio
2021-05-07Display arrow cursor if text is not editablekobewi
2021-05-07Rename "Control" key to "Ctrl" and add "_pressed" suffix to all ↵Lightning_A
InputEventWithModifiers properties/methods
2021-05-07Merge pull request #48535 from groud/tiles_squashedRémi Verschelde
TileSet and TileMap rework (squashed)
2021-05-07Rework the TileSet resource and TileMap nodes:Gilles Roudière
- Move most properties from TileMap to TileSet, - Make TileSet more flexible, supporting more feature (several collision layers, etc...), - Fusion both the TileMap and TileSet editor, - Implement TileSetSources, and thus a new way to index tiles in the TileSet, - Rework the TileSet and TileMap editors completely, - Implement an editor zoom widget (and use it in several places)
2021-05-07Expose get_total_visible_rows as get_visible_line_countsent44
2021-05-07Fixed bug in tab_container with hidden tabsbesh81
Fix a bug that occour when there are hidden tabs in tab_container. The visualization isn't correct due to missing values in tab_widths array.
2021-05-06Merge pull request #34840 from Calinou/colorpicker-display-old-colorRémi Verschelde
Display the old color in ColorPicker for easier comparison
2021-05-06Merge pull request #48500 from groud/add_buttongroup_pressed_signalRémi Verschelde
Adds a pressed signal to ButtonGroup
2021-05-06Merge pull request #45607 from Calinou/improve-editor-themeRémi Verschelde
Improve the editor theme
2021-05-06Adds a pressed signal to ButtonGroupGilles Roudière
2021-05-06Merge pull request #44831 from gongpha/dont-update-tree-if-selectedRémi Verschelde
Blocking updating in SceneTreeEditor when an item was selected
2021-05-06Display the old color in ColorPicker for easier comparisonHugo Locurcio
This only affects ColorPickerButton nodes that spawn a ColorPicker, not standalone ColorPickers. This partially addresses #7366.
2021-05-05Fixed issues with Editor Log after recent changesEric M
Fixed #48446, Fixed #48443
2021-05-04Merge pull request #47855 from aaronfranke/doubleclickRémi Verschelde
Rename `doubleclick` to `double_click`
2021-05-04Merge pull request #41321 from EricEzaM/output-log-enhancementsRémi Verschelde
2021-05-04Merge pull request #48008 from LightningAA/scrollcontainer-hide-scrollbars-4.0Rémi Verschelde
Add the ability to hide `ScrollContainer`'s scrollbars
2021-05-04Merge pull request #35893 from KoBeWi/a_tree_prRémi Verschelde
Calculate __focus_rect when TreeItem is focused
2021-05-04Rename `doubleclick` to `double_click`Aaron Franke
2021-05-04Improve output log performance.Eric M
Added method to create a new line in RichTextLabel without adding an ItemNewline to the previous line. Previously, removing a line then adding a newline was adding unnecessary ItemNewline instances to the previous line, significantly the remove_line method.
2021-05-03Merge pull request #48198 from KoalasinTraffic/fix-indent-left-line-selectionRémi Verschelde
Fix start line selection for indent_selected_lines_left
2021-04-30Fix autocompletion for Control's Theme propertiesYuri Sizov
2021-04-28Calculate __focus_rect when TreeItem is focusedTomasz Chabora
2021-04-28Add the ability to hide scrollcontainer's scrollbarsLightning_A
2021-04-28Fixed issues with LineEdit Delete Word & Backspace Word.EricEzaM
Backspace word was deleting all text before the cursor, and delete word was no updating until another action was performed on the LineEdit (in order to update it)
2021-04-27Improve the editor themeHugo Locurcio
The editor theme now makes use of rounded corners and less borders to follow modern visual trends. The default theme's colors were also tweaked to make the blue hue more subtle (similar to the Arc theme, which was removed as a consequence). The Alien theme was replaced by a Breeze Dark theme, which should blend in well with the KDE theme.
2021-04-25Fix indent left line selectionKoala
2021-04-17Rename LineEdit caret_* properties getters and setters to match propertyMarcel Admiraal
2021-04-16Merge pull request #47728 from ray90514/bug#47562Rémi Verschelde
Fix LineEdit undo behaves strangely
2021-04-15Fixed ui_accept (spacebar + return) accepting auto-completion options.Eric M