Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix Tree and FileSystemList edit popup double events and ESC behavior. | bruvzg | 2024-05-17 | 1 | -1/+25 |
| | |||||
* | Use Core/Scene stringnames consistently | kobewi | 2024-05-13 | 1 | -1/+1 |
| | |||||
* | Fold TreeItems when clicking to the left of fold icon | kobewi | 2024-05-08 | 1 | -1/+1 |
| | |||||
* | Make handling of rename line-edit popups more robust | Pedro J. Estébanez | 2024-05-07 | 1 | -3/+1 |
| | |||||
* | [Core] Add scalar versions of `Vector*` `min/max/clamp/snap(ped)` | A Thousand Ships | 2024-05-02 | 1 | -1/+1 |
| | | | | Convenience for a number of cases operating on single values | ||||
* | Fix Tree minimum size calculation | Haoyu Qiu | 2024-04-25 | 1 | -36/+47 |
| | | | | | | | | | - Take scroll bar space and column title buttons into account - Fix first column min size sometimes missing one level of indent - Fix cell min size ignoring text overrun behavior and item inner margin - Update min size when `hide_root` or `column_title_visible` changes Wrong description of `item_inner_margin_*` constants is also fixed | ||||
* | Fix wrong Tree column title position | Haoyu Qiu | 2024-04-23 | 1 | -2/+3 |
| | |||||
* | Fix TreeItem button handling | Haoyu Qiu | 2024-04-18 | 1 | -79/+102 |
| | | | | | | - Fix incorrect tooltip and `get_button_id_at_position()` when column title is visible and when RTL layout is used - Take `button_margin`, `h_separation`, and `item_margin` into account | ||||
* | Merge pull request #90842 from timothyqiu/revert-79792 | Rémi Verschelde | 2024-04-18 | 1 | -3/+10 |
|\ | | | | | | | Revert "Correctly display tooltips for buttons in Tree when they overlap cell content | ||||
| * | Revert "Correctly display tooltips for buttons in Tree when they overlap ↵ | Haoyu Qiu | 2024-04-18 | 1 | -3/+10 |
| | | | | | | | | | | | | cell content" This reverts commit 8278a5f274eda7484b4f31a5acb4af34b9d4fc39. | ||||
* | | Fix non-embedded Windows resizing to match Viewport content scale factor | Koyper | 2024-04-17 | 1 | -3/+11 |
|/ | |||||
* | Merge pull request #89977 from aqfranco/master | Rémi Verschelde | 2024-04-04 | 1 | -5/+18 |
|\ | | | | | | | Fix TreeItem shows cell edit in the wrong column when `select_mode=Row` and TreeItem has multiple columns | ||||
| * | Fix #88892: TreeItem shows cell edit in the wrong column when SelectMode=Row ↵ | Andre Franco | 2024-03-28 | 1 | -5/+18 |
| | | | | | | | | | | | | | | | | | | | | and TreeItem has multiple columns Editor would not be brought up when clicking on all but the last column on a TreeItem with SelectMode=Row with multiple columns and when the editor was being brought up when clicking on the last column, it was editing the first column Fixed draw_item, gui_input and edit_selected functions by setting set_meta parameter for each column Fixed select_single_item function by changing selected_col depending on input | ||||
* | | Rename some arguments called "position" | kobewi | 2024-03-27 | 1 | -2/+2 |
|/ | |||||
* | Fix empty_clicked signal when hide_root | voylin | 2024-03-22 | 1 | -0/+1 |
| | | | | fix | ||||
* | Merge pull request #88300 from FaycalElOuariachi/add-TreeItem-is_visible_in_tree | Rémi Verschelde | 2024-03-05 | 1 | -11/+34 |
|\ | | | | | | | Add `is_visible_in_tree` in `TreeItem` | ||||
| * | Add is_visible_in_tree in TreeItem | Faycal ElOuariachi | 2024-03-05 | 1 | -11/+34 |
| | | |||||
* | | Add auto translation to `Tree` | Michael Alexsander | 2024-03-01 | 1 | -6/+25 |
| | | |||||
* | | Add option to add built-in strings in the POT generation | Michael Alexsander | 2024-02-28 | 1 | -1/+1 |
| | | |||||
* | | Fix crash when selecting re-added `Tree` item | Mikael Hermansson | 2024-02-27 | 1 | -0/+4 |
|/ | |||||
* | Fix recursive Tree expand/collapse shortcuts not working | Hugo Locurcio | 2024-02-13 | 1 | -22/+12 |
| | | | | | | | | | | This also moves them to use Shift instead of Alt, as was already done for mouse interactions. Shortcuts in Tree were also made non-exact matches so they still work if modifiers are held. This is important for up/down shortcuts, especially once support for selecting with Shift + up/down is implemented. | ||||
* | Only recurse depth wise in `Tree::_count_selected_items` | ACB | 2024-02-04 | 1 | -6/+2 |
| | |||||
* | Merge pull request #87688 from AThousandShips/what_is_this | Rémi Verschelde | 2024-01-29 | 1 | -5/+5 |
|\ | | | | | | | Remove unnecessary `this->` expressions | ||||
| * | Remove unnecessary `this->` expressions | A Thousand Ships | 2024-01-29 | 1 | -5/+5 |
| | | |||||
* | | Add `get_button_color(column, id)` | radzo73 | 2024-01-28 | 1 | -0/+7 |
|/ | | | | Docs should point to Color constuctor instead of just the class, but I unfortunately cannot. | ||||
* | Use callable for `TreeItem` custom draw | A Thousand Ships | 2024-01-23 | 1 | -5/+30 |
| | | | | Deprecating old functionality | ||||
* | Redraw `TreeItem` on more changes | A Thousand Ships | 2024-01-22 | 1 | -0/+20 |
| | | | | | | * Custom font changes * Custom draw changes * Custom as button | ||||
* | Update deferred calls to use Callables | kobewi | 2024-01-09 | 1 | -2/+2 |
| | |||||
* | Merge pull request #86218 from TheSofox/arrow-key-scene-tree-nav | Yuri Sizov | 2023-12-20 | 1 | -4/+3 |
|\ | | | | | | | Fix `Node` selection when navigating `Tree` with Arrow keys | ||||
| * | Fixes Node selection when navigating SceneTree with Arrow keys | Sofox | 2023-12-16 | 1 | -4/+3 |
| | | |||||
* | | Merge pull request #84845 from DarkMessiah/tree-disabled-checkbox | Yuri Sizov | 2023-12-19 | 1 | -10/+25 |
|\ \ | |/ |/| | | | Implement disabled state for Checkbox in Tree | ||||
| * | Implement disabled state for Checkbox in Tree | Stanislav Labzyuk | 2023-11-15 | 1 | -10/+25 |
| | | |||||
* | | Prevent crash when call set_text() on a removed treeItem | jsjtxietian | 2023-12-12 | 1 | -4/+12 |
| | | |||||
* | | Make Tree's set_selected check if treeitem belongs to the tree | jsjtxietian | 2023-11-14 | 1 | -0/+2 |
|/ | |||||
* | Fix TreeItem truncating node names too much when using a custom icon | Adam Chyb | 2023-10-27 | 1 | -1/+1 |
| | | | | Fixes #83801. | ||||
* | Allow clicking buttons of non-selectable TreeItems | kobewi | 2023-10-09 | 1 | -13/+13 |
| | |||||
* | Merge pull request #81174 from BlueCube3310/tree-range-fix | Rémi Verschelde | 2023-10-02 | 1 | -1/+1 |
|\ | | | | | | | Fix TreeItem range slider not working properly | ||||
| * | Fix TreeItem range slider not working | BlueCube3310 | 2023-08-30 | 1 | -1/+1 |
| | | |||||
* | | Fix expected argument count for `Callable` call errors | Danil Alexeev | 2023-09-29 | 1 | -1/+1 |
| | | |||||
* | | Replace Ctrl in editor shortcuts with Cmd or Ctrl depending on platform | ajreckof | 2023-09-19 | 1 | -1/+1 |
| | | |||||
* | | Register theme properties with ThemeDB | Yuri Sizov | 2023-09-11 | 1 | -70/+71 |
| | | |||||
* | | Correctly display tooltips for buttons in Tree when they overlap cell content | Miguel Pereira | 2023-08-27 | 1 | -10/+3 |
|/ | |||||
* | GUI: Fix text overlapping icon in `Tree` | Danil Alexeev | 2023-08-24 | 1 | -2/+27 |
| | |||||
* | Enabled missing Tree title button font and font size theme settings. | Koyper | 2023-08-16 | 1 | -3/+2 |
| | |||||
* | GUI: Fix `Tree` performance regression by using cache | Danil Alexeev | 2023-08-04 | 1 | -39/+53 |
| | |||||
* | Fixed Tree Selection Bug | Yogendra Manawat | 2023-07-29 | 1 | -9/+10 |
| | |||||
* | Merge pull request #78393 from AThousandShips/tree_tooltip | Yuri Sizov | 2023-07-12 | 1 | -0/+7 |
|\ | | | | | | | Add ability to set the tooltip text of a `TreeItem` button | ||||
| * | Add ability to set the tooltip text of a `TreeItem` button | Ninni Pipping | 2023-06-18 | 1 | -0/+7 |
| | | |||||
* | | Merge pull request #75460 from ↵ | Yuri Sizov | 2023-07-12 | 1 | -4/+7 |
|\ \ | | | | | | | | | | | | | | | | joao-pedro-braz/add_new_item_stylebox_to_the_tree_control Add a new "inner_item_margin" Theme constant to the Tree control | ||||
| * | | Add the "inner_item_margin" Theme constant to the Tree control | João Pedro Braz | 2023-06-02 | 1 | -4/+7 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This PR adds the "inner_item_margin" Theme constant to the Tree Control. It behaves like a horizontal padding (in CSS), but only in the active writing direction (So on LTR it'll apply a left padding and on RTL right padding). The Editor Theme has been updated to make use of this and a result items in Trees and ItemLists no longer "hugs" their border, expressing a proper spacing instead. |