summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2023-09-26 16:36:27 +0200
committerRémi Verschelde <rverschelde@gmail.com>2023-09-26 16:36:27 +0200
commite9e99775f13780aa85e402e4a2943f4414b600be (patch)
tree2a6e803c550d81a7930d8d207de02197351a07e2
parente0b117139647ae7d2747a9ec22aefb740e2975bf (diff)
parentf60cff1cb2a56982c765dab5d10cbfd90ee7560d (diff)
downloadredot-engine-e9e99775f13780aa85e402e4a2943f4414b600be.tar.gz
Merge pull request #82375 from raulsntos/dotnet/fix-compat
C#: Remove compat method that is now generated
-rw-r--r--modules/mono/glue/GodotSharp/GodotSharp/Compat.cs7
1 files changed, 0 insertions, 7 deletions
diff --git a/modules/mono/glue/GodotSharp/GodotSharp/Compat.cs b/modules/mono/glue/GodotSharp/GodotSharp/Compat.cs
index dd0affdb75..48b47b166a 100644
--- a/modules/mono/glue/GodotSharp/GodotSharp/Compat.cs
+++ b/modules/mono/glue/GodotSharp/GodotSharp/Compat.cs
@@ -83,13 +83,6 @@ partial class RenderingDevice
partial class RichTextLabel
{
- /// <inheritdoc cref="AddImage(Texture2D, int, int, Nullable{Color}, InlineAlignment, Nullable{Rect2}, Variant, bool, string, bool)"/>
- [EditorBrowsable(EditorBrowsableState.Never)]
- public void AddImage(Texture2D image, int width, int height, Nullable<Color> color, InlineAlignment inlineAlign, Nullable<Rect2> region)
- {
- AddImage(image, width, height, color, inlineAlign, region, key: default, pad: false, tooltip: "", sizeInPercent: false);
- }
-
/// <inheritdoc cref="PushList(int, ListType, bool, string)"/>
[EditorBrowsable(EditorBrowsableState.Never)]
public void PushList(int level, ListType type, bool capitalize)