Browse Source

OC-3381: (Fix bug) In preferences, the 'instant upload via WIFI' field is multiline but only use two lines instead of three

masensio 11 years ago
parent
commit
d10c10532f
1 changed files with 1 additions and 0 deletions
  1. 1 0
      src/com/owncloud/android/ui/CheckBoxPreferenceWithLongTitle.java

+ 1 - 0
src/com/owncloud/android/ui/CheckBoxPreferenceWithLongTitle.java

@@ -42,5 +42,6 @@ public class CheckBoxPreferenceWithLongTitle extends CheckBoxPreference{
         TextView titleView = (TextView) view.findViewById(android.R.id.title);
         titleView.setSingleLine(false);
         titleView.setMaxLines(3);
+        titleView.setEllipsize(null);
     }
 }