mirror of
https://github.com/GoldenCheetah/GoldenCheetah.git
synced 2026-02-13 08:08:42 +00:00
Fix textview overflow in display
This commit is contained in:
@@ -270,6 +270,6 @@ public class CurrentValuesAdapter extends BaseAdapter {
|
||||
Rect bounds = new Rect();
|
||||
tv.getPaint().getTextBounds("9999.9", 0, "9999.9".length(), bounds);
|
||||
|
||||
return bounds.width();
|
||||
return bounds.width() + 16;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user