Skip to content
This repository has been archived by the owner on May 1, 2024. It is now read-only.

Commit

Permalink
[Tizen] Fix ScrollView renderer invalid cast issue (#13272)
Browse files Browse the repository at this point in the history
  • Loading branch information
rookiejava committed Jan 4, 2021
1 parent dd5a6d2 commit 3763db8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Xamarin.Forms.Platform.Tizen/Renderers/ScrollViewRenderer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ public class ScrollViewRenderer : ViewRenderer<ScrollView, NScroller>
int _defaultVerticalStepSize;
int _defaultHorizontalStepSize;

EvasFormsCanvas EvasFormsCanvas => _scrollCanvas as EvasFormsCanvas;
EvasBox EvasFormsCanvas => _scrollCanvas as EvasBox;

Canvas Canvas => _scrollCanvas as Canvas;
NBox Canvas => _scrollCanvas as NBox;

public ScrollViewRenderer()
{
Expand Down

0 comments on commit 3763db8

Please sign in to comment.