diff options
-rw-r--r-- | Xamarin.Forms.Platform.Tizen/Cells/CellRenderer.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Xamarin.Forms.Platform.Tizen/Cells/CellRenderer.cs b/Xamarin.Forms.Platform.Tizen/Cells/CellRenderer.cs index c74d2e3e..096c1689 100644 --- a/Xamarin.Forms.Platform.Tizen/Cells/CellRenderer.cs +++ b/Xamarin.Forms.Platform.Tizen/Cells/CellRenderer.cs @@ -6,7 +6,7 @@ namespace Xamarin.Forms.Platform.Tizen { public abstract class CellRenderer : IRegisterable { - const string _heightProperty = "Height"; + const string HeightProperty = "Height"; readonly Dictionary<Cell, Dictionary<string, EvasObject>> _realizedNativeViews = new Dictionary<Cell, Dictionary<string, EvasObject>>(); Native.ListView.ItemContext _currentItem; @@ -30,7 +30,7 @@ namespace Xamarin.Forms.Platform.Tizen protected virtual bool OnCellPropertyChanged(Cell cell, string property, Dictionary<string, EvasObject> realizedView) { - if (property == _heightProperty) + if (property == HeightProperty) { return true; } |