summaryrefslogtreecommitdiffstats
path: root/editor/scene_tree_dock.cpp
Commit message (Collapse)AuthorAgeFilesLines
...
| * Add hover highlight to main editor buttonsMatt Enad2024-02-161-5/+7
| | | | | | | | Updates styling of the editor run bar, plugin, bottom panel, icon buttons, and main menu buttons for accessibility.
* | Use check_changed_settings_in_group() everywherekobewi2024-02-191-1/+3
| |
* | [Editor] Add missing ellipses to menu options that open dialogsA Thousand Ships2024-02-171-4/+4
| |
* | Add an option to center children around the new parent when reparentingBitlytic2024-02-141-0/+55
|/
* Rework how script is edited when clicking iconkobewi2024-02-131-3/+1
|
* Replace error checks against `size` with `is_empty`A Thousand Ships2024-02-091-2/+2
|
* Merge pull request #87834 from TokageItLab/remove-dupecall-scene-tree-dockRémi Verschelde2024-02-051-3/+0
|\ | | | | | | Remove duplicated callings `set()` from SceneTreeDock
| * Remove duplicated `set()` methods from SceneTreeDockSilc Lizard (Tokage) Renew2024-02-031-3/+0
| |
* | Fix shortcut name consistency in SceneTreeDockkobewi2024-02-011-3/+3
|/
* Add support for search shortcut to all dockspassivestar2024-01-221-0/+15
|
* Display path in tooltips of sub-resource listkobewi2024-01-161-0/+1
|
* Reorganize code related to editor themingYuri Sizov2024-01-161-1/+1
| | | | | | | | | | | | | This change introduces a new EditorThemeManager class to abstract theme generatio and its subroutines. Logic related to EditorTheme, EditorColorMap, and editor icons has been extracted into their respective files with includes cleaned up. All related files have been moved to a separate folder to better scope them in the project. This includes relevant generated files as well.
* add tooltip for toggling favorite nodesQuirkyLemon2024-01-121-1/+1
|
* Update deferred calls to use Callableskobewi2024-01-091-2/+1
|
* Fix behavior of 'Editable Children' toggle.SaracenOne2024-01-091-9/+114
| | | | | | Prevents losing nodes owned by the edited scene when toggling editable_children off on an instanced scene, and makes the toggle compatible with undo-redo.
* Add const lvalue ref to container parametersMuller-Castro2024-01-051-1/+1
|
* Merge pull request #84284 from Haydoggo/script-switchRémi Verschelde2024-01-041-1/+3
|\ | | | | | | Preserve inspector focus when opening script from scene tree
| * preserve inspector focus when opening scriptHayden Leete2023-11-011-1/+3
| |
* | Merge pull request #84135 from aXu-AP/reparent-select-fixRémi Verschelde2024-01-041-0/+3
|\ \ | | | | | | | | | Fix nodes being deselected upon reparenting
| * | Fix nodes being deselected upon reparentingaXu-AP2023-10-311-0/+3
| |/
* | Merge pull request #84445 from Rubonnek/add-const-references-clang-tidyRémi Verschelde2024-01-041-1/+1
|\ \ | | | | | | | | | Add const references detected by clang-tidy
| * | Add const references detected by clang-tidyWilson E. Alvarez2023-12-161-1/+1
| | |
* | | Merge pull request #82802 from ↵Rémi Verschelde2024-01-031-5/+15
|\ \ \ | | | | | | | | | | | | | | | | | | | | marcinn/fix-82756-prevent-saving-children-without-owner Fix saving branch as scene saves children without owner set
| * | | Fix #82756: Save branch as scene saves children without owner setMarcin Nowak2023-11-161-5/+15
| | | |
* | | | Merge pull request #86211 from TheSofox/node-duplicate-undo-fixRémi Verschelde2024-01-021-3/+10
|\ \ \ \ | | | | | | | | | | | | | | | Fix duplicating multiple nodes at different depths in `SceneTreeDock`
| * | | | Fixed duplicating nodes at different depths in SceneTreeDockSofox2023-12-221-3/+10
| | |/ / | |/| |
* / | | Fix scene dock search losing its default tooltip after typing an invalid filterMichael Alexsander2023-12-171-1/+1
|/ / /
* | | Merge pull request #84882 from Invertex/select-instance-assetYuri Sizov2023-12-141-0/+19
|\ \ \ | | | | | | | | | | | | Add "Show In FileSystem" to the Scene hierarchy right-click
| * | | Added "Show In FileSystem" right-click option to Scene hierarchy nodes.Invertex2023-12-131-0/+19
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | -Implemented shared function for focusing FileSystem tab and highlighting the node path. -Created right-click option that shows up in the Scene-Hierarchy on Nodes that have a file-system source path. -Created custom icon for this right-click option -Implemented the shared function and icon for other places that already had this features (Open Node tab, Inspector Resource) Co-authored-by: MewPurPur <mew.pur.pur@gmail.com>
* | | Merge pull request #85236 from YuriSizov/editor-flat-remoteYuri Sizov2023-12-081-4/+4
|\ \ \ | | | | | | | | | | | | Use the flat button style on switches in scene and node docks
| * | | Use the flat button style on switches in scene and node docksYuri Sizov2023-11-221-4/+4
| |/ /
* | | Merge pull request #85181 from TheSofox/reparent-container-undo-fixRémi Verschelde2023-12-041-1/+6
|\ \ \ | | | | | | | | | | | | Restored Control properties when you undo a parenting of a Control to a Container
| * | | Restored Control layout properties you undo a parenting of a Control to a ↵Sofox2023-11-221-1/+6
| |/ / | | | | | | | | | Container
* / / Disable a prohibitively slow code branch when reparenting nodesYuri Sizov2023-11-291-0/+3
|/ /
* | Don't use TTR/RTR for ERR/WARN printsRémi Verschelde2023-11-121-2/+2
| | | | | | | | We don't translate those, only editor strings are translated.
* | Fix node names of submenu items across the editorYuri Sizov2023-11-081-2/+2
| | | | | | | | Also removes some programmer remarks and fixes some docs.
* | Merge pull request #83596 from SaracenOne/node_copy_paste_fixYuri Sizov2023-11-061-8/+21
|\ \ | | | | | | | | | Fix ownership bugs in node copy and pasting.
| * | Fix ownership bugs in node copy and pasting.Saracen2023-11-041-8/+21
| | |
* | | Fix perform_node_renames handling of AnimationMixers track pathsSaracen2023-11-021-75/+93
| |/ |/|
* | Merge pull request #83934 from KoBeWi/give_back_animations_to_animation_editorRémi Verschelde2023-10-281-0/+5
|\ \ | | | | | | | | | Fix animation track paths updated by scene dock
| * | Fix animation track paths updated by scene dockkobewi2023-10-251-0/+5
| | |
* | | Remove toggling of unique names in subscenesSaracen2023-10-281-1/+24
| | |
* | | Merge pull request #84022 from SaracenOne/validate_renamesRémi Verschelde2023-10-271-0/+6
|\ \ \ | | | | | | | | | | | | Add foreign validation warning for rename actions.
| * | | Add foreign validation warning for rename actions.Saracen2023-10-261-0/+6
| |/ /
* | | Merge pull request #81510 from garychia/unedit_created_scriptRémi Verschelde2023-10-261-0/+5
|\ \ \ | |/ / |/| | | | | SceneTreeDock: Avoid changing the currently edited object when attaching a script
| * | Avoid changing the currently edited object when attaching a scriptChia-Hsiang Cheng2023-09-101-0/+5
| | |
* | | Merge pull request #83597 from SaracenOne/duplicate_foreign_nodesRémi Verschelde2023-10-251-6/+11
|\ \ \ | | | | | | | | | | | | Support duplication of foreign nodes.
| * | | Support duplication of foreign nodes.Saracen2023-10-181-6/+11
| | |/ | |/|
* | | Merge pull request #81737 from Mickeon/fix-connection-inherited-packed-sceneRémi Verschelde2023-10-241-0/+16
|\ \ \ | | | | | | | | | | | | Fix internal `CONNECT_INHERITED` being saved in PackedScene & Make Local
| * | | Fix internal CONNECT_INHERITED being saved in PackedScene & Make LocalMicky2023-10-031-0/+16
| | | |