Hugo Locurcio
0c0ee427d2
Improve the text appearance in the script editor warnings panel
...
- Make the Ignore button's position identical across all warnings
by moving it to the left.
- Change the Ignore button's text and color to make it more obvious
that it can be clicked.
- Use the editor font instead of the default project font to match
the rest of the editor.
2020-05-24 14:30:44 +02:00
PouleyKetchoupp
39f59786fa
Use long instead of int for object id in Android java wrapper
...
Using int for 64-bit values might cause issues with objects not found
in ObjectDB when the id is truncated.
2020-05-24 13:26:18 +02:00
Thakee Nathees
13c372b522
regression: dictionary key no autocomplete fix
...
Fix : #38998
2020-05-24 16:52:44 +05:30
Rémi Verschelde
57d21ebeda
Merge pull request #38396 from nekomatata/unexpose-sort-children
...
Fix Container sorting not working when overriding _sort_children in gdscript
2020-05-23 20:22:44 +02:00
PouleyKetchoupp
12685df423
Fix resource preview in remote inspector
...
The specific case for object reference seems unnecessary, as `RES res = var`
already does the work. The case where REF is invalid is never hit in the case
of already freed objects.
The assignment `res = *r` was causing the resource to be always invalidated
on the 3.2 branch.
2020-05-23 11:52:02 +02:00
Aaron Franke
8879625879
Dynamic infinite 3D grid
...
Well, infinite for all intents and purposes.
2020-05-22 19:43:59 -04:00
PouleyKetchoupp
01802074a0
Fix dialog spam when inspecting MeshInstance from model file
...
Avoid load_scene for built-in resources to make sure we don't
open a scene tab and prompt for model file editing.
Load scene as regular resource instead and store the reference to keep
the dependency until the remote inspector cache is cleared.
2020-05-22 21:50:16 +02:00
Rémi Verschelde
46450979db
Merge pull request #38942 from neikeq/hinjaku-hinjaku
...
Fix editor ignoring 'single_window_mode' with no main scene
2020-05-22 18:59:38 +02:00
K. S. Ernest (iFire) Lee
f7fdc87789
Custom Skeleton3DEditorPlugin
...
Co-authored-by: Marios Staikopoulos <marios@staik.net>
2020-05-22 09:54:34 -07:00
Rémi Verschelde
2a3f650bf6
Merge pull request #38962 from neikeq/4.0-scons-option-build-cil
...
Add SCons option to not build C# solutions
2020-05-22 18:29:13 +02:00
Ignacio Etcheverry
e3a54152e4
Add SCons option to not build C# solutions
2020-05-22 17:44:33 +02:00
Ignacio Etcheverry
6852b29658
Fix editor ignoring 'single_window_mode' with no main scene
...
Previously the editor would ignore the 'single_window_mode' editor setting if
the edited project didn't have a main scene configured in the project settings.
2020-05-22 17:41:09 +02:00
MrRevington
4641fb9ec4
FIX CodeTextEditor not respecting focus in _input
2020-05-22 17:32:15 +02:00
Rémi Verschelde
3be9c74d8b
Merge pull request #38951 from bruvzg/win_ink_block_mm_4
...
Block WM_MOUSEMOVE during Windows Ink pen handling.
2020-05-22 14:34:20 +02:00
Rémi Verschelde
90f46a19a4
Merge pull request #38366 from akien-mga/xatlas-470576d
...
xatlas: Sync with upstream 470576d
2020-05-22 10:17:14 +02:00
Rémi Verschelde
a891c71426
Merge pull request #38886 from Xrayez/save-png-to-buffer-bind
...
Expose `Image.save_png_to_buffer` method
2020-05-22 09:48:23 +02:00
bruvzg
b08b027a9a
Block WM_MOUSEMOVE during Windows Ink pen handling.
2020-05-22 10:44:47 +03:00
Rémi Verschelde
efe291a206
Merge pull request #38921 from dreamsComeTrue/move-tool-with-arrow-keys
...
Fix moving 2D node with mouse after using arrow keys
2020-05-22 09:44:19 +02:00
Rémi Verschelde
07ada02cb4
Merge pull request #38943 from neikeq/yakamashi
...
Mono/C#: Don't try to load project assembly in project manager
2020-05-22 09:16:26 +02:00
Rémi Verschelde
bbd2115cb4
Merge pull request #38941 from neikeq/issue-38889
...
Fix condition in ClassDB tests that should return
2020-05-22 09:13:59 +02:00
Rémi Verschelde
0bbbcc1d2a
Merge pull request #38940 from neikeq/issue-33896
...
Mono/C#: Fix values not updated in remote inspector
2020-05-22 09:09:19 +02:00
Rémi Verschelde
36a0fe6857
Merge pull request #38936 from dreamsComeTrue/tab-container-icon-separation
...
Clarifies 'icon_separation' in TabContainer (instead of 'hseparation')
2020-05-22 09:05:23 +02:00
Rémi Verschelde
eb00dad00c
Merge pull request #38930 from GuidoRevers/fix_vulkan_win_segmentation_fault
...
Fix segmentation fault when loading project
2020-05-22 08:58:36 +02:00
Ignacio Etcheverry
d7e21ecd63
Mono/C#: Don't try to load project assembly in project manager
...
This was causing an error message when launching the manager,
because there is no project assembly to load.
2020-05-22 02:17:59 +02:00
Ignacio Etcheverry
ecd0cccc76
Fix condition in ClassDB tests that should return
...
Also changed the name of the test macros to be clearer.
2020-05-22 01:52:32 +02:00
Ignacio Etcheverry
51e1614d28
Mono/C#: Fix values not updated in remote inspector
2020-05-22 00:58:38 +02:00
Dominik 'dreamsComeTrue' Jasiński
08377b3f04
Clarifies 'icon_separation' in TabContainer (instead of 'hseparation')
...
Fixes : #38911
2020-05-21 21:53:17 +02:00
GuidoRevers
cf20c0343f
Fix segmentation fault when using context_vulkan after memdelete context_vulkan
2020-05-21 20:38:58 +02:00
Hugo Locurcio
1439447071
Tweak the import compression property hint for clarity
2020-05-21 17:06:44 +02:00
Dominik 'dreamsComeTrue' Jasiński
03b54f8a35
Fix moving 2D node with mouse after using arrow keys
...
Fixes : #38894
2020-05-21 14:50:35 +02:00
Rémi Verschelde
9239412027
Merge pull request #38891 from bruvzg/fix_doc_const_order
...
Docs: Fix order of variant constants.
2020-05-21 14:27:32 +02:00
Rémi Verschelde
78e223569b
Merge pull request #33689 from jbuck3/signal-error
...
Trigger an error when trying to define a preexisting signal in GDScript
2020-05-21 11:01:23 +02:00
Rémi Verschelde
af366c7adf
Merge pull request #35900 from yamgent/unreachable
...
Fix false positive "Unreachable code" warning for loops
2020-05-21 10:59:59 +02:00
Rémi Verschelde
e6ff562a4b
Merge pull request #38907 from cj-dimaggio/rasterizer_dummy_leak
...
Delete DummyMesh when RasterizerStorageDummy is Freed
2020-05-21 10:55:59 +02:00
CJ DiMaggio
66a294d459
Delete DummyMesh when RasterizerStorageDummy is freed
2020-05-20 21:23:37 -04:00
bruvzg
409562558a
Docs: Fix order of variant constants.
2020-05-20 16:45:42 +03:00
Rémi Verschelde
0b8cb945cf
doc: Sync classref with current source
2020-05-20 15:29:37 +02:00
Rémi Verschelde
2ddbaeaf8c
DocData: Fix sorting of arguments and constants
...
The missing `operator<` definitions caused `Vector::sort()` to fail
sorting those alphabetically by name on Windows (not sure why Linux
isn't affected, I guess GCC/Clang are cleverer and use the operator
from the first struct member).
2020-05-20 14:36:34 +02:00
Rémi Verschelde
55377aa559
Merge pull request #38876 from paulloz/fix-import-params-error
...
Fix error with 'params' when import dock doesn't define any parameter
2020-05-20 14:00:01 +02:00
Rémi Verschelde
1d573969c0
Merge pull request #38874 from bruvzg/tab_drv_sel_40
...
[Windows] Add tablet driver selection.
2020-05-20 13:58:20 +02:00
Rémi Verschelde
59780fd046
xatlas: Sync with upstream 470576d
2020-05-20 13:51:15 +02:00
Andrii Doroshenko (Xrayez)
d4d4229d9d
Expose Image.save_png_to_buffer
method
2020-05-20 14:43:24 +03:00
Rémi Verschelde
d3612d04c7
Merge pull request #38794 from nekomatata/text-edit-search-result
...
TextEdit search returns Dictionary instead of Vector
2020-05-20 13:28:29 +02:00
Rémi Verschelde
9a75425b5b
xatlas: Revert style changes made by mistake in #38386
2020-05-20 13:02:04 +02:00
Rémi Verschelde
c404fe5848
Merge pull request #38515 from Calinou/cli-scene-allow-res-tres
...
Allow `.res` and `.tres` extensions in the scene CLI positional argument
2020-05-20 11:46:27 +02:00
Rémi Verschelde
aec07538f4
Merge pull request #38309 from SkyLucilfer/AndroidLineEdit
...
Fix Android LineEdit editing bugs
2020-05-20 11:45:59 +02:00
Rémi Verschelde
a325a777a6
Merge pull request #38834 from YeldhamDev/change_type_keep_meta
...
Keep "lock" metadata when changing a Node's type, if applicable
2020-05-20 11:42:06 +02:00
bruvzg
d0b5174b6a
[Windows] Add tablet driver selection.
2020-05-20 09:37:32 +03:00
Paul Joannon
b7a6946790
check the params section exist before erasing it in import_dock
...
related #38864
2020-05-20 01:04:21 +02:00
Rémi Verschelde
cba1f492cc
Merge pull request #38863 from neikeq/csharp-no-false-error-objtype-reload
...
Mono/C#: Remove script load error about not a Godot.Object
2020-05-19 20:48:59 +02:00