Skip to content

Commit

Permalink
[ElmSharp] Fix description of API (Samsung#339)
Browse files Browse the repository at this point in the history
### Description of Change ###
Fix the description of API `Entry.DisableSelection(bool disable)`

### Bugs Fixed ###
N/A

### API Changes ###
N/A

### Behavioral Changes ###
N/A
  • Loading branch information
JoonghyunCho authored and WonyoungChoi committed Jul 26, 2018
1 parent 9e68612 commit 71259c5
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/ElmSharp/ElmSharp/Entry.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1131,9 +1131,10 @@ public void PasteSelection()
}

/// <summary>
/// This disables the entry's selection.
/// This disables the entry's selection handlers.
/// This works properly on the profile that provides selection handlers.
/// </summary>
/// <param name="disable">If true, the selection is disabled.</param>
/// <param name="disable">If true, the selection handlers are disabled.</param>
/// <since_tizen> preview </since_tizen>
public void DisableSelection(bool disable)
{
Expand Down Expand Up @@ -1192,4 +1193,4 @@ protected override IntPtr CreateHandle(EvasObject parent)
return Interop.Elementary.elm_entry_add(parent.Handle);
}
}
}
}

0 comments on commit 71259c5

Please sign in to comment.