summaryrefslogtreecommitdiffstats
path: root/editor/scene_tree_dock.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Support opening custom class documentation with "Open Documentation" menu entryjsjtxietian2024-08-271-1/+10
|
* Merge pull request #95171 from KoBeWi/remove_saveRémi Verschelde2024-08-171-6/+9
|\ | | | | | | Avoid saving EditorSettings on startup
| * Avoid saving EditorSettings on startupkobewi2024-08-051-6/+9
| |
* | Don't drop PackedScene as propertyHaoyu Qiu2024-08-031-3/+4
|/
* Fix node gets wrongly selected after moving another node in the treeAeioMuch2024-07-231-0/+1
|
* Removed Unique Name Access From Node Moved To RootiiMidknightii2024-07-171-0/+2
|
* Merge pull request #93165 from passivestar/scenetree-shortcut-focusRémi Verschelde2024-07-171-2/+7
|\ | | | | | | Prevent node rename shortcut from stealing focus from controls
| * Prevent node rename shortcut from stealing focus from controlspassivestar2024-07-091-2/+7
| |
* | Fix wrong inspected node after drag&dropkobewi2024-07-081-1/+10
| |
* | Fix clear_custom_color on invalid tree_item_inspectedAeioMuch2024-06-281-4/+5
| |
* | Fix reselecting scene tree node after inspecting a resourceAnni Ryynänen2024-06-241-0/+1
| | | | | | | | | | | | This broke when the `node_selected` connection was removed in #91435. Here it's returned, but the emit is removed from `_node_removed`. That preserves the earlier fix while allowing nodes to be reselected.
* | Merge pull request #93110 from Hilderin/fix-signal-panel-after-connectionRémi Verschelde2024-06-191-0/+1
|\ \ | | | | | | | | | Fix Can't reopen signals panel immediately after connecting a signal
| * | Fix Can't reopen signals panel immediately after connecting a signal #92996Hilderin2024-06-181-0/+1
| |/
* | [Scene] Add `SceneStringNames::text/value_changed`A Thousand Ships2024-06-191-1/+1
| |
* | [Scene] Add `SceneStringNames::confirmed`A Thousand Ships2024-06-191-9/+9
|/
* Merge pull request #92930 from passivestar/inspector-node-deleteRémi Verschelde2024-06-111-0/+1
|\ | | | | | | Add missing inspector dock update after node deletion
| * Add missing inspector dock update after node deletionpassivestar2024-06-091-0/+1
| |
* | Merge pull request #91265 from AeioMuch/fix_drop_reparentRémi Verschelde2024-06-101-7/+30
|\ \ | |/ |/| | | Fix reparenting after hover delay
| * Fix reparent when hovering after delayAeioMuch2024-05-311-7/+30
| |
* | Call `EditorNode::set_edited_scene()` manually instead of via the ↵风青山2024-06-061-0/+4
| | | | | | | | | | | | | | `replacing_by` signal Cannot change `scene_root`'s child node in `EditorNode::set_edited_scene()` if replaced later using `replace_by`.
* | Fix default NodePaths saved in scenekobewi2024-06-031-1/+1
| |
* | [Scene] Add `SceneStringNames::id_pressed`A Thousand Ships2024-05-301-6/+6
| |
* | Fix error when dropping image onto the scene dockHaoyu Qiu2024-05-281-2/+2
| |
* | Fix bounding box glitchajreckof2024-05-231-0/+16
| |
* | Remove duplicate shortcut definitionskobewi2024-05-211-1/+1
| |
* | Create AudioStreamPlayer when dropping AudioStreamHaoyu Qiu2024-05-191-19/+99
|/ | | | | | - Create AudioStreamPlayer if dropped in between nodes in the Scene dock - Create AudioStreamPlayer2D if dropped into 2D editor - Create AudioStreamPlayer3D if dropped into 3D editor
* Fix Control resizing wrongly after "change type" in editorRedMser2024-05-141-0/+13
|
* [Scene] Add SceneStringNames::pressedA Thousand Ships2024-05-141-13/+13
|
* Use Core/Scene stringnames consistentlykobewi2024-05-131-3/+3
|
* Merge pull request #91435 from ajreckof/Fix-selecting-root-when-opening-scene-Rémi Verschelde2024-05-131-1/+0
|\ | | | | | | Fix selecting root when opening scene.
| * Fix selecting root when opening scene.ajreckof2024-05-121-1/+0
| |
* | Fix PropertyListHelper::_get_property returning a valid value even if an ↵Gilles Roudière2024-05-101-13/+16
| | | | | | | | | | | | index is outside the array valid indices Co-authored-by: Tomasz Chabora <kobewi4e@gmail.com>
* | Replace `find` with `contains/has` where applicableA Thousand Ships2024-05-081-1/+1
| | | | | | | | | | | | | | * Replaces `find(...) != -1` with `contains` for `String` * Replaces `find(...) == -1` with `!contains` for `String` * Replaces `find(...) != -1` with `has` for containers * Replaces `find(...) == -1` with `!has` for containers
* | Reduce and prevent unnecessary random-access to `List`A Thousand Ships2024-05-041-21/+21
|/ | | | | | | | | Random-access access to `List` when iterating is `O(n^2)` (`O(n)` when accessing a single element) * Removed subscript operator, in favor of a more explicit `get` * Added conversion from `Iterator` to `ConstIterator` * Remade existing operations into other solutions when applicable
* Fix offset of node filter menu separator iconHaoyu Qiu2024-04-191-6/+1
|
* Fix going forward backward in editor selection history.ajreckof2024-04-141-0/+7
|
* Make the inherited scene root node unable to change type风青山2024-04-111-10/+19
| | | | | Make the inherited scene root behave like other children from the inherited scene.
* Inspect hovered node while draggingAeioMuch2024-04-101-0/+58
|
* Add context support for editor property name i18nHaoyu Qiu2024-03-311-1/+1
|
* Disable auto-translation in sub-resource list menukobewi2024-03-261-0/+1
|
* Update NodePaths only in built-in resourceskobewi2024-03-111-5/+6
|
* Merge pull request #89142 from miv391/shortcut-to-editable-childrenRémi Verschelde2024-03-041-0/+15
|\ | | | | | | Change Editable Children menu action to be keyboard shortcuttable
| * Changed Editable Children menu action to be keyboard shortcuttableMika Viskari2024-03-041-0/+15
| |
* | Allow to easily rename multiple nodeskobewi2024-03-031-10/+2
|/ | | | Co-authored-by: ajreckof <tbonhoure@ymail.Com>
* Add const lvalue ref to editor/* container parametersMuller-Castro2024-02-261-6/+6
|
* Add methods to add submenus without using nameskobewi2024-02-221-5/+2
|
* Merge pull request #86378 from RobProductions/update-hover-stylingRémi Verschelde2024-02-201-5/+7
|\ | | | | | | Add hover highlight to main editor buttons
| * 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
| |