Merge pull request #2621 from patrick-iv/fix_default_text_size
Fix for default text size being set in PX instead of DP
This commit is contained in:
commit
886cc9f85d
1 changed files with 1 additions and 1 deletions
|
@ -36,7 +36,7 @@ public abstract class ComponentBase {
|
|||
/**
|
||||
* the text size of the labels
|
||||
*/
|
||||
protected float mTextSize = 10f;
|
||||
protected float mTextSize = Utils.convertDpToPixel(10f);
|
||||
|
||||
/**
|
||||
* the text color to use for the labels
|
||||
|
|
Loading…
Add table
Reference in a new issue