summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.Tizen/Extensions/KeyboardExtensions.cs
diff options
context:
space:
mode:
authordarkleem <cdark.lim@samsung.com>2017-06-01 15:10:35 +0900
committerKangho Hur <kangho.hur@samsung.com>2017-07-10 11:11:26 +0900
commitb32f1b834b533e027785de74a7ab8f5c1183a122 (patch)
tree33d157452f1036985eeabba432d31d2033451f1d /Xamarin.Forms.Platform.Tizen/Extensions/KeyboardExtensions.cs
parent30905150de33a4ff833a68cee99f9ae5912692d5 (diff)
downloadxamarin-forms-b32f1b834b533e027785de74a7ab8f5c1183a122.tar.gz
xamarin-forms-b32f1b834b533e027785de74a7ab8f5c1183a122.tar.bz2
xamarin-forms-b32f1b834b533e027785de74a7ab8f5c1183a122.zip
fixed the numeric appearance of Entry.Keyboard Property
- TASK=TCAPI-2232 Change-Id: I2c67f8d765e5c9e4c7049d28d2e0e384ed6f16fd Signed-off-by: darkleem <cdark.lim@samsung.com>
Diffstat (limited to 'Xamarin.Forms.Platform.Tizen/Extensions/KeyboardExtensions.cs')
-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)
{