Sfoglia il codice sorgente

Fixed Text being reversed in Editor Boxes

Frank van den Bos 1 anno fa
parent
commit
1c1c9280ff

+ 5 - 5
InABox.Mobile/InABox.Mobile.Android/MobileEditorRenderer.cs

@@ -33,11 +33,11 @@ namespace InABox.Mobile.Android
         protected override void OnElementPropertyChanged(object sender, PropertyChangedEventArgs e)
         {
             base.OnElementPropertyChanged(sender, e);
-            if (Control != null)
-            {
-                Control.RequestFocus();
-                Control.SetSelection(0); //Control.Text.Length);                
-            }
+            // if (Control != null)
+            // {
+            //     Control.RequestFocus();
+            //     Control.SetSelection(0); //Control.Text.Length);                
+            // }
         }       
     }
 }