Browse Source

fix 120 character line margin

AndyScherzinger 8 years ago
parent
commit
0a83e7d3ee

+ 6 - 2
src/main/java/com/owncloud/android/ui/components/CustomEditText.java

@@ -56,7 +56,8 @@ public class CustomEditText extends android.support.v7.widget.AppCompatEditText
     }
 
     public String getFullServerUrl() {
-        if (TextUtils.isEmpty(fixedText) || getText().toString().startsWith(AuthenticatorActivity.HTTP_PROTOCOL)
+        if (TextUtils.isEmpty(fixedText)
+                || getText().toString().startsWith(AuthenticatorActivity.HTTP_PROTOCOL)
                 || getText().toString().startsWith(AuthenticatorActivity.HTTPS_PROTOCOL)) {
             return getText().toString();
         } else if (isPrefixFixed) {
@@ -81,7 +82,10 @@ public class CustomEditText extends android.support.v7.widget.AppCompatEditText
                 && !getText().toString().startsWith(AuthenticatorActivity.HTTPS_PROTOCOL)
                 && !TextUtils.isEmpty(fixedText)) {
             if (isPrefixFixed) {
-                canvas.drawText(fixedText, super.getCompoundPaddingLeft(), getBaseline(), getPaint());
+                canvas.drawText(fixedText,
+                        super.getCompoundPaddingLeft(),
+                        getBaseline(),
+                        getPaint());
             } else {
                 canvas.drawText(fixedText, super.getCompoundPaddingLeft()
                         + getPaint().measureText(getText().toString()), getBaseline(), getPaint());