Ver código fonte

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

masensio 11 anos atrás
pai
commit
d10c10532f

+ 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);
     }
 }