Fix InputMethod options issue (#278)
authorXianbing Teng <xb.teng@samsung.com>
Mon, 4 Jun 2018 07:25:17 +0000 (02:25 -0500)
committerdongsug-song <35130733+dongsug-song@users.noreply.github.com>
Mon, 4 Jun 2018 07:25:17 +0000 (16:25 +0900)
src/Tizen.NUI/src/public/InputMethod.cs

index 1246075..499b73c 100755 (executable)
@@ -151,8 +151,8 @@ namespace Tizen.NUI
         {
             PropertyMap _outputMap = new PropertyMap();
             if (_panelLayout != null) { _outputMap.Add("PANEL_LAYOUT", new PropertyValue((int)_panelLayout)); }
-            if (_actionButton != null) { _outputMap.Add("ACTION_BUTTON", new PropertyValue((int)_actionButton)); }
-            if (_autoCapital != null) { _outputMap.Add("AUTO_CAPITALISE", new PropertyValue((int)_autoCapital)); }
+            if (_actionButton != null) { _outputMap.Add("BUTTON_ACTION", new PropertyValue((int)_actionButton)); }
+            if (_autoCapital != null) { _outputMap.Add("AUTO_CAPITALIZE", new PropertyValue((int)_autoCapital)); }
             if (_variation != null) { _outputMap.Add("VARIATION", new PropertyValue((int)_variation)); }
             return _outputMap;
         }