summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordarkleem <cdark.lim@samsung.com>2017-06-01 15:10:35 +0900
committerdarkleem <cdark.lim@samsung.com>2017-06-01 15:13:54 +0900
commitbd720aa1e6427bf0d53b31ae9d5b14f272592b36 (patch)
treed7e26842aacb82aba88398eaf54c36fce3350d5c
parenta8fe49f275af4fe4adfa3781730525e74b3ae582 (diff)
downloadxamarin-forms-bd720aa1e6427bf0d53b31ae9d5b14f272592b36.tar.gz
xamarin-forms-bd720aa1e6427bf0d53b31ae9d5b14f272592b36.tar.bz2
xamarin-forms-bd720aa1e6427bf0d53b31ae9d5b14f272592b36.zip
fixed the numeric appearance of Entry.Keyboard Property
- TASK=TCAPI-2232 Change-Id: I2c67f8d765e5c9e4c7049d28d2e0e384ed6f16fd Signed-off-by: darkleem <cdark.lim@samsung.com>
-rw-r--r--Xamarin.Forms.Platform.Tizen/Extensions/KeyboardExtensions.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Xamarin.Forms.Platform.Tizen/Extensions/KeyboardExtensions.cs b/Xamarin.Forms.Platform.Tizen/Extensions/KeyboardExtensions.cs
index 20017c26..6acfe3f6 100644
--- a/Xamarin.Forms.Platform.Tizen/Extensions/KeyboardExtensions.cs
+++ b/Xamarin.Forms.Platform.Tizen/Extensions/KeyboardExtensions.cs
@@ -13,7 +13,7 @@ namespace Xamarin.Forms.Platform.Tizen
{
if (keyboard == Keyboard.Numeric)
{
- return Native.Keyboard.Number;
+ return Native.Keyboard.NumberOnly;
}
else if (keyboard == Keyboard.Telephone)
{