changeset 2703:321e2cf1282a

Android: Via testing, MLE is set to word wrap by default on most platforms. Enable word wrap by default, so it matches: OS/2, Windows, Mac, iOS...
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Wed, 17 Nov 2021 12:33:20 +0000
parents 4f12dc8e8f18
children ae846e9f1ead
files android/DWindows.kt
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/android/DWindows.kt	Wed Nov 17 11:19:06 2021 +0000
+++ b/android/DWindows.kt	Wed Nov 17 12:33:20 2021 +0000
@@ -2154,8 +2154,8 @@
             mle!!.inputType = (inputType or InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS)
             mle!!.isVerticalScrollBarEnabled = true
             mle!!.scrollBarStyle = View.SCROLLBARS_INSIDE_INSET
-            mle!!.setHorizontallyScrolling(true)
-            mle!!.isHorizontalScrollBarEnabled = true
+            mle!!.setHorizontallyScrolling(false)
+            mle!!.isHorizontalScrollBarEnabled = false
             mle!!.gravity = Gravity.TOP or Gravity.LEFT
         }
         return mle