summaryrefslogtreecommitdiff
path: root/scene/gui
AgeCommit message (Collapse)Author
2023-01-31Merge pull request #67507 from Sauermann/fix-toplevel-root-control-nodeRémi Verschelde
Fix event propagation to child after set_as_toplevel
2023-01-30Updates VideoDecoder plugin API to GDExtension.anish bhobe
Adds VideoStream and relevant resource loaders to migrate external GDNative plugins to GDExtension. Adds a VideoStreamLoader as a specialization of ResourceFormatLoader as ClassDB::is_parent_class is inaccessible from GDExtension currently. Using Object* instead of Ref<T> in order to avoid the refcount bug (godotengine/godot-cpp#652) Also another bug is in ResourceLoader in use on the extension side that requires fixing.
2023-01-30[RichTextLabel] Fix thread unsafe `set_physics_process_internal` usage. Use ↵bruvzg
`WorkerThreadPool` instead of creating new threads.
2023-01-29Merge pull request #71896 from poohcom1/fix/autocomplete-substring-filterRémi Verschelde
Fix autocomplete filter not including substrings
2023-01-28Fix connections drawing in GraphEdit minimapStanislav Labzyuk
2023-01-27Merge pull request #58334 from Sauermann/fix-to-gui-or-not-to-guiRémi Verschelde
Fix SubViewportContainer processing Events before other Control-Nodes
2023-01-27Merge pull request #72167 from dalexeev/line-text-edit-context-menuRémi Verschelde
Fix `LineEdit` and `TextEdit` context menus not customizable
2023-01-27Merge pull request #72149 from MinusKube/rich_text_visible_chars_bugRémi Verschelde
Fix char offset calculation when processing RichTextLabel line caches
2023-01-27Fix `LineEdit` and `TextEdit` context menus not customizableDanil Alexeev
2023-01-27Fix char offset calculation when processing RichTextLabel line cachesMinusKube
2023-01-27Merge pull request #71427 from ↵Rémi Verschelde
Calinou/spinbox-custom-arrow-step-add-property-hint Add a property hint for SpinBox's `custom_arrow_step` property
2023-01-26Merge pull request #66688 from Sauermann/fix-control-get-global-rect-coordinatesRémi Verschelde
Fix Control rect coordinate system inconsistency
2023-01-26[Windows] Fix committing IME text without IME deactivation.bruvzg
2023-01-26Merge pull request #72046 from MewPurPur/buttons-inspector-clutter-reductionRémi Verschelde
Add groups to Button and BaseButton to reduce inspector clutter
2023-01-25Add more sections to Button and BaseButtonVolTer
2023-01-25Merge pull request #71983 from vmedea/push-customfxRémi Verschelde
Expose RichTextLabel::push_customfx to GDScript
2023-01-25Merge pull request #71685 from groud/gesture_into_viewpannerRémi Verschelde
Add gesture to ViewPanner and simplify a bit its API
2023-01-25Merge pull request #71142 from aaronfranke/never-duplicate-scriptRémi Verschelde
Add `PROPERTY_USAGE_NEVER_DUPLICATE` flag and use for script
2023-01-25Merge pull request #71330 from Geometror/richtextlabel-fit-contentRémi Verschelde
[RichTextLabel] Match minimum size calculation of Label (proper content fitting)
2023-01-24PropertyUsage: Rename "DO_NOT_SHARE_ON_DUPLICATE" to "ALWAYS_DUPLICATE"Aaron Franke
2023-01-24Improve clarity of Tree's activated/double-clicked signalsAaron Franke
Co-authored-by: Yuri Sizov <yuris@humnom.net>
2023-01-24Expose RichTextLabel::push_customfx to GDScriptmara
2023-01-23Add gesture to ViewPanner and simplify a bit its APIGilles Roudière
2023-01-23Cleanup and unify keyboard input.bruvzg
- Unify keycode values (secondary label printed on a key), remove unused hardcoded Latin-1 codes. - Unify IME behaviour, add inline composition string display on Windows and X11. - Add key_label (localized label printed on a key) value to the key events, and allow mapping actions to the unshifted Unicode events. - Add support for physical keyboard (Bluetooth or Sidecar) handling on iOS. - Add support for media key handling on macOS. Co-authored-by: Raul Santos <raulsntos@gmail.com>
2023-01-23Convert en_GB spelling to en_US with codespellRémi Verschelde
2023-01-23Fix autocomplete filter not including substringspoohcom1
2023-01-22Merge pull request #71686 from YuriSizov/stylebox-min-size-but-betterRémi Verschelde
Clean-up, harmonize, and improve StyleBox API
2023-01-22Merge pull request #71609 from lufog/menubar-auto-translationRémi Verschelde
MenuBar add auto-translation of Menu names
2023-01-21Merge pull request #70773 from KoBeWi/lectorRémi Verschelde
Add range iterator to LocalVector
2023-01-21Merge pull request #67253 from KoBeWi/PICKER_USAGE_NO_EDITORRémi Verschelde
Remove editor dependencies from ColorPicker
2023-01-21Use range iterators in LocalVector loopskobewi
2023-01-21Fix constant editor redraw after shortcutJuan Linietsky
Introduced by me by mistake on #71328. Fixes #71652.
2023-01-20MenuBar add auto-translation of Menu namesАлексей Смирнов
2023-01-19Merge pull request #71598 from bruvzg/gdscript_bidi_overrideRémi Verschelde
Implement BiDi override mode for GDScript source.
2023-01-19Clean-up, harmonize, and improve StyleBox APIYuri Sizov
- Make all margin properties follow the same naming convention (their getter and setter too). - Remove a virtual counterpart of `get_style_margin` from API. - Allow to override `get_minimum_size` from scripting and remove `get_center_size`.
2023-01-19Cleanup unused engine code v2kobewi
2023-01-18Merge pull request #60904 from KoBeWi/👻👻👻Rémi Verschelde
Allow unindent without selection
2023-01-18Implement BiDi override mode for GDScript source.bruvzg
2023-01-18Merge pull request #71379 from KoBeWi/destruction_of_compatibility_functionRémi Verschelde
Remove set_drag_forwarding_compat()
2023-01-18Allow unindent without selectionkobewi
2023-01-17Prevent infinite cascade of re-layout after label text reshapingPedro J. Estébanez
2023-01-16Merge pull request #70685 from stmSi/fix-nan-graphedit-infinite-loopRémi Verschelde
Fix: NaN value making infinite loop inside GraphEdit's `NOTIFICATION_DRAW`
2023-01-16Merge pull request #70433 from Sauermann/fix-treeitem-idRémi Verschelde
Fix confusion about TreeItem.add_button ambiguity between id and index
2023-01-14Add a property hint for SpinBox's `custom_arrow_step` propertyHugo Locurcio
Only positive or zero values make sense for this property.
2023-01-14Fixed adding extra quote when completing stringsPaulb23
2023-01-14Remove set_drag_forwarding_compat()kobewi
2023-01-14Merge pull request #71328 from reduz/button-shortcuts-no-longer-pressYuri Sizov
Button shortcuts no longer "press" the Button.
2023-01-13Add expand mode compat to TextureRectkobewi
2023-01-13Button shortcuts no longer "press" the Button.Juan Linietsky
* Button shortcuts were treated as generic input events on buttons. This means that to activate a button shortcut you had to press and release. * This logic is removed and now shortcuts always activate on press. * This makes the editor feel more responsive and solves problems related to this behavior. Fixes #45033 and possibly others.
2023-01-13[RichTextLabel] Match minimum size calculation of LabelHendrik Brucker
(optional via fit_content property)