1
0
mirror of https://github.com/godotengine/godot.git synced 2025-12-06 17:25:19 +00:00
Commit Graph

6695 Commits

Author SHA1 Message Date
kit
6a75a89712 Fix CodeEdit line length guideline zoomed position 2025-02-08 15:30:37 -05:00
Pāvels Nadtočajevs
09822ea1a9 Forward color picker preview mouse button events to the window underneath. 2025-02-08 10:16:03 +02:00
Pāvels Nadtočajevs
7da0767f35 [TextEdit] Update syntax highlighting when IME composition string is updated. 2025-02-07 11:54:56 +02:00
Pāvels Nadtočajevs
7aeffb8923 [TextEdit] Improve wrapped line indent handling. 2025-02-07 09:52:50 +02:00
Rémi Verschelde
e87f4f67b0 Merge pull request #100913 from larspet/tooltip-hover-oob
Prevent tooltip from showing when hovering past the end of script line
2025-02-07 01:39:11 +01:00
风青山
bef64baa18 Display the actual used theme items in the Inspector
Closes: godotengine/godot-proposals#4439.

Allows viewing the default values ​​of the currently used theme item
in the Inspector.

For theme item properties of resource type, editing the default
resource does not make sense. Use **Make Unique** to create a copy
before editing.
2025-02-07 07:29:30 +08:00
Rémi Verschelde
7f4097a83a Merge pull request #102116 from Giganzo/tree-get_item_rect
Fix `get_item_area_rect` when tree is scrolled
2025-02-05 11:33:58 +01:00
Thaddeus Crews
07464479ff Merge pull request #102296 from kitbdev/fix-te-remove-range-line-count
Fix TextEdit visible line count when setting text
2025-02-04 09:04:10 -06:00
Thaddeus Crews
92ebcd2343 Merge pull request #102079 from bruvzg/emb_nmenu
Fix native popup menus position in embedded windows.
2025-02-04 09:04:09 -06:00
Thaddeus Crews
4186f57fe8 Merge pull request #102344 from bruvzg/rtl_reg
[RTL] Fix updating region without updating texture.
2025-02-04 09:04:06 -06:00
Thaddeus Crews
c9887d25e3 Merge pull request #102342 from bruvzg/no_font_set
Make `CharFXTransform.font` property read only, add some extra documentation notes.
2025-02-04 09:03:58 -06:00
Thaddeus Crews
61808e9c98 Merge pull request #91778 from kitbdev/selection-cancel
Fix TextEdit mouse selection and scroll cancel
2025-02-03 11:14:39 -06:00
Thaddeus Crews
0f40078a8b Merge pull request #102349 from Giganzo/color-picker-raw-a-slider
Fix ColorPicker RAW alpha slider theme
2025-02-03 11:14:38 -06:00
Pāvels Nadtočajevs
05ca80632d [Linux] Implement native color picker. 2025-02-03 16:30:44 +02:00
Bernat Arlandis
f2475326a4 Fix playing of video Theora files 2025-02-03 13:22:35 +01:00
Giganzo
e50f509b3d Fix ColorPicker RAW alpha slider theme 2025-02-03 01:48:29 +01:00
Pāvels Nadtočajevs
5b57904bef [RTL] Fix updating region without updating texture. 2025-02-03 00:06:55 +02:00
Pāvels Nadtočajevs
50740c4e91 Make CharFXTransform.font property read only, add some extra documentation notes. 2025-02-02 23:08:35 +02:00
kobewi
886e5d8084 Don't return Tree items outside visible rect 2025-02-02 00:17:41 +01:00
Pāvels Nadtočajevs
4b8cfc3040 Fix native popup menus position in embedded windows. 2025-02-01 21:31:03 +02:00
kit
0a19f89ee9 Fix TextEdit visible line count when setting text 2025-02-01 13:04:37 -05:00
Robert Yevdokimov
d8318deb0a Fix spinbox decimal issues when update_on_text_changed = true 2025-02-01 21:31:28 +04:00
Thaddeus Crews
00564920d8 Merge pull request #101960 from Giganzo/colorpicker-swatches-menubutton
Fix ColorPicker load/save swatches button interactions
2025-01-31 09:15:37 -06:00
kobewi
66dffca1f2 Fix ColorPicker sliders in overbright RGB 2025-01-31 13:56:39 +01:00
Giganzo
bde87db443 Fix get_item_area_rect when tree is scrolled 2025-01-30 12:27:03 +01:00
Thaddeus Crews
53104265ca Merge pull request #101868 from bruvzg/rtl_nt_ready
[RTL] Fix `ready` signal sent too early in single threaded RTL.
2025-01-29 17:45:18 -06:00
kit
73d813aada Fix TextEdit mouse selection and scroll cancel 2025-01-29 13:49:30 -05:00
风青山
7230932dba Fix ui navigation break
Use `is_visible_in_tree()` instead of `is_visible()` to check for
invisible controls.
2025-01-29 20:57:59 +08:00
Thaddeus Crews
3c3ff85d33 Merge pull request #101913 from Giganzo/color-hide-button
Fix ColorPicker hide save/load swatches for presets_visible
2025-01-28 16:08:58 -06:00
Thaddeus Crews
1d11751b15 Merge pull request #101899 from havi05/itemlist-fix-textoverrun
ItemList: Fix `text_overrun_behavior`
2025-01-28 09:03:38 -06:00
Hugo Locurcio
daa6198925 Add built-in GUI to display license notices
Press Ctrl/Cmd + Shift + L (`ui_toggle_licenses_dialog` built-in action)
to show/hide the notices dialog.

The dialog can be shown via script using
`SceneTree.licenses_dialog_visible = true|false`.

Co-authored-by: MewPurPur <mew.pur.pur@abv.bg>
2025-01-27 18:35:04 +01:00
风青山
f7397a0fee Remove confusing Control::is_top_level_control()
It's hard to tell at first glance under what circumstances `is_top_level_control()`
returns `true`. So it's hard to decide when to use this method. And it seems to be
just a helper function for `Control::get_root_parent_control()`.

`is_top_level_control()` seems to only return `true` during entry and exit of canvas.
2025-01-28 00:29:23 +08:00
Thaddeus Crews
6dc78c8aa1 Merge pull request #101771 from bruvzg/lbl_line_valign
Fix Label vertical line alignment.
2025-01-27 09:46:27 -06:00
Thaddeus Crews
0dc6b7c056 Merge pull request #101280 from Sauermann/fix-focus-rect-meta-access
Fix `__focus_rect` meta access error when resizing `Tree`
2025-01-27 09:46:23 -06:00
Thaddeus Crews
1c0bff54a1 Merge pull request #93792 from kitbdev/fix-center-viewport-horizontal
Fix center viewport not working horizontally
2025-01-27 09:46:18 -06:00
Thaddeus Crews
69c5b03070 Merge pull request #101625 from Rindbee/fix-follow-focus-in-rotated-ScrollContainer
Fix Follow Focus in a rotated `ScrollContainer`
2025-01-27 09:46:14 -06:00
Thaddeus Crews
ecbd90d022 Merge pull request #101825 from ryevdokimov/spin-box-drag-accept-event
Fix spinbox input events propagating during dragging, breaking focus
2025-01-27 09:46:11 -06:00
Pāvels Nadtočajevs
adceb32177 Fix FILE_MODE_OPEN_ANY file dialog not selecting folders. 2025-01-27 10:43:11 +02:00
kit
46fa85891b Fix center viewport not working horizontally 2025-01-25 17:53:53 -05:00
havi05
2c35077148 Itemlist - fix text_overrun_behavior 2025-01-24 23:48:38 +01:00
Thaddeus Crews
a5015ca8f6 Merge pull request #101957 from arkology/texture-progress-minimum-size
`TextureProgressBar` minimum size selection as maximum among all textures
2025-01-24 09:05:39 -06:00
havi05
03caf44f57 Tree - highlight selected items 2025-01-24 08:07:02 +01:00
arkology
046793b260 TextureProgressBar minimum size selection as maximum among all textures 2025-01-23 07:14:11 +00:00
Thaddeus Crews
53f3143028 Merge pull request #101923 from Giganzo/color-button-click
Fix ColorPicker Swatches button width
2025-01-22 16:32:25 -06:00
Thaddeus Crews
c032ce4050 Merge pull request #101613 from kitbdev/fix-te-hover-mouse-exit
Fix TextEdit breakpoint hover not hiding on mouse exit
2025-01-22 16:32:24 -06:00
Giganzo
a36f064204 Fix ColorPicker load/save swatches button interactions 2025-01-22 19:23:29 +01:00
Giganzo
660b5af677 Fix ColorPicker Swatches button width 2025-01-22 16:33:53 +01:00
Giganzo
e9b164adf7 Fix ColorPicker hide save/load swatches for pressets_visible 2025-01-22 15:36:45 +01:00
Thaddeus Crews
672fd7b0bb Merge pull request #101842 from havi05/tree-fix-ui_select
Tree - fix `ui_select`
2025-01-21 11:55:28 -06:00
scgm0
25fd115957 Fix OptionButton::show_popup 2025-01-21 21:37:19 +08:00