Skip to content

Commit

Permalink
Fix for SwipeItemMenuItemHandler on Windows
Browse files Browse the repository at this point in the history
Windows does not appear to need to implement ISetImageHandler
  • Loading branch information
jonathanpeppers committed May 13, 2023
1 parent 1643aba commit 15b3ed1
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@

namespace Microsoft.Maui.Handlers
{
public partial class SwipeItemMenuItemHandler : ISwipeItemMenuItemHandler, ISetImageHandler
public partial class SwipeItemMenuItemHandler : ISwipeItemMenuItemHandler
#if !WINDOWS
, ISetImageHandler
#endif
{
public static IPropertyMapper<ISwipeItemMenuItem, ISwipeItemMenuItemHandler> Mapper =
new PropertyMapper<ISwipeItemMenuItem, ISwipeItemMenuItemHandler>(ViewHandler.ElementMapper)
Expand Down

0 comments on commit 15b3ed1

Please sign in to comment.