Skip to content

Commit

Permalink
Rebase to upstream latest main
Browse files Browse the repository at this point in the history
  • Loading branch information
rookiejava committed Mar 31, 2022
1 parent 78763d1 commit e233620
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
5 changes: 5 additions & 0 deletions src/Compatibility/Core/src/RendererToHandlerShim.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@
using PlatformView = UIKit.UIView;
using Microsoft.Maui.Controls.Compatibility.Platform.iOS;
using ViewHandler = Microsoft.Maui.Handlers.ViewHandler<Microsoft.Maui.IView, UIKit.UIView>;
#elif TIZEN
using static Microsoft.Maui.Controls.Compatibility.Platform.Tizen.Platform;
using NativeView = ElmSharp.EvasObject;
using Microsoft.Maui.Controls.Compatibility.Platform.Tizen;
using ViewHandler = Microsoft.Maui.Handlers.ViewHandler<Microsoft.Maui.IView, ElmSharp.EvasObject>;
#elif NETSTANDARD
using PlatformView = System.Object;
using ViewHandler = Microsoft.Maui.Handlers.ViewHandler<Microsoft.Maui.IView, System.Object>;
Expand Down
1 change: 0 additions & 1 deletion src/Core/src/Handlers/View/ViewHandlerOfT.Tizen.cs
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,6 @@ protected override void RemoveContainer()

protected override void OnNativeViewDeleted()
{
NativeView = null;
Dispose();
}

Expand Down

0 comments on commit e233620

Please sign in to comment.