Age | Commit message (Collapse) | Author |
|
Clicking backgrd. dimming of editor popup stops input event propagation
|
|
A click on the dimmed background of a popup in the editor should stop the input event from propagating to the background.
This solution reuses the system introduced in commit efc3ffb8, taking advantage of the hide() notifications from the modal where we will set the flag "pass_on_modal_close_click(false)" to stop event handling at the viewport input event handling.
The viewport first hides the modal and after marks the input as handled if the flag mentioned above is set.
Fixes #36341
|
|
|
|
Add a soft line length guideline to the script editor
|
|
Use left/right arrow to move cursor when unselecting in LineEdit
|
|
- Renames PackedIntArray to PackedInt32Array.
- Renames PackedFloatArray to PackedFloat32Array.
- Adds PackedInt64Array and PackedFloat64Array.
- Renames Variant::REAL to Variant::FLOAT for consistency.
Packed arrays are for storing large amount of data and creating stuff like
meshes, buffers. textures, etc. Forcing them to be 64 is a huge waste of
memory. That said, many users requested the ability to have 64 bits packed
arrays for their games, so this is just an optional added type.
For Variant, the float datatype is always 64 bits, and exposed as `float`.
We still have `real_t` which is the datatype that can change from 32 to 64
bits depending on a compile flag (not entirely working right now, but that's
the idea). It affects math related datatypes and code only.
Neither Variant nor PackedArray make use of real_t, which is only intended
for math precision, so the term is removed from there to keep only float.
|
|
Fix: auto brace complete for quoted strings
|
|
This attribute is now part of the standard we target so we no longer
need compiler-specific hacks.
Also enables -Wimplicit-fallthrough for Clang now that we can properly
support it. It's already on by default for GCC's -Wextra.
Fixes new warnings raised by Clang's -Wimplicit-fallthrough.
|
|
Fixes #36002
|
|
Also changed all relevant properties defined manually to StringName.
|
|
objects and made them default.
|
|
Typed `PoolTypeArray` types are now renamed `PackedTypeArray` and are
sugar for `Vector<Type>`.
|
|
RichTextLabel: proper handling of internal key events
|
|
-- useful for rename dialog (the filename portion is selected by
default, and usually, want to change the end of the name, not the
beginning)
|
|
|
|
|
|
The default value is 80. The hard line length guideline's
default column has been moved to 100 to account for the new
soft line length guideline.
It can be disabled by setting its value to the same column as the
hard line length guideline.
This closes https://github.com/godotengine/godot-proposals/issues/347.
|
|
Fixes #36211
|
|
32 bits.
|
|
Removes antialiased flag for draw_* methods.
|
|
Still a lot to do
|
|
-Texture renamed to Texture2D
-TextureLayered as base now inherits 2Darray, cubemap and cubemap array
-Removed all references to flags in textures (they will go in the shader)
-Texture3D gone for now (will come back later done properly)
-Create base rasterizer for RenderDevice, RasterizerRD
|
|
Always display subsequence autocompletion matches
|
|
Fix to RichTextEffect `visibility` - Label Now Accounts for Skipped Characters.
|
|
Fixes add group in Group Editor dialog
|
|
Adds CTRL-A CTRL-E support to LineEdit on macOS
|
|
Fix text clipping in Tree items not working with negative values
|
|
|
|
Update cached_width of the line_edit element (#35699)
|
|
|
|
|
|
- Fix build with gdscript module disabled. Fixes #31011.
- Remove unused `gdscript` compile option.
- Fix build with regex module disabled.
- Fix ImageLoaderSVG to forward declare thirdparty structs.
|
|
PR #35068 made Container (which GraphNode inherits) default to
MOUSE_FILTER_PASS, so I removed the manual override, but it turns out
that GraphNode's constructor still overrides it to MOUSE_FILTER_STOP.
Another fix could be to remove the STOP in the constructor, but I don't
know if it's there for a specific reason (e.g. to have GraphNodes STOP
by default, but PASS in a specific case).
Fixes #35978.
|
|
Use MOUSE_FILTER_PASS for all containers
|
|
Fix control node transform animation jitter with pivot offset
|
|
|
|
Before this fix, new group can't be created if any existing group starts
with the new name.
|
|
|
|
Fixes OptionButton minimum size
|
|
A picture is easier to describe this issue than words. Basically, rich
text effects allowed for character visibility changes. While doing so
would work properly, the rich text label would render the next `word` in
an offset accounting for the hidden characters (leaving a huge space.)
This patch fixes this issue by keeping track of the amount of
`backtrack` necessary per line.
|
|
|
|
This reverts commit 695980a0f21adbe66eb12e1015fdc8c51fb62bf9.
Fixes #35668.
|
|
|
|
|
|
Android virtual keyboard respecting LineEdit max length.
|
|
|
|
Due to a typo, the size of a candidate neighbor was confused with the
size of the control itself.
Fixes #34936.
|
|
Fix scrollbar regression on large scales
|
|
|
|
|