From 51812e6a904eaebcbdeeb47e15b2a8a5ff506a56 Mon Sep 17 00:00:00 2001 From: SungHyun Min Date: Wed, 10 May 2017 19:21:10 +0900 Subject: [PATCH] Fix left/right icon issue in ListItem - TASK=TCAPI-2325 Change-Id: I3daa4285445f8d755836628d57a873df8592d114 --- src/ElmSharp/ElmSharp/ListItem.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) mode change 100755 => 100644 src/ElmSharp/ElmSharp/ListItem.cs diff --git a/src/ElmSharp/ElmSharp/ListItem.cs b/src/ElmSharp/ElmSharp/ListItem.cs old mode 100755 new mode 100644 index fbdd3e4..09354b1 --- a/src/ElmSharp/ElmSharp/ListItem.cs +++ b/src/ElmSharp/ElmSharp/ListItem.cs @@ -28,8 +28,8 @@ namespace ElmSharp internal ListItem(string text, EvasObject leftIcon, EvasObject rightIcon) : base(IntPtr.Zero) { Text = text; - LeftIcon = LeftIcon; - RightIcon = RightIcon; + LeftIcon = leftIcon; + RightIcon = rightIcon; } /// @@ -47,4 +47,4 @@ namespace ElmSharp /// public EvasObject RightIcon { get; internal set; } } -} +} \ No newline at end of file -- 2.7.4