Add default case under OnPlatform
authorjh5.cho <jh5.cho@samsung.com>
Fri, 20 Jan 2017 08:52:07 +0000 (17:52 +0900)
committerKangho Hur <kangho.hur@samsung.com>
Mon, 24 Apr 2017 04:36:51 +0000 (13:36 +0900)
  - Add default case to let Default action is called to Tizen platform

Change-Id: I15ffdb4622b1173353a4321d49b3b270256491c2

Xamarin.Forms.Core/Device.cs [changed mode: 0644->0755]

old mode 100644 (file)
new mode 100755 (executable)
index cfeab5a..e1bbd51
@@ -122,6 +122,7 @@ namespace Xamarin.Forms
                                                Default();
                                        break;
                                case TargetPlatform.Other:
+                               default:
                                        if (Default != null)
                                                Default();
                                        break;