We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd84416 commit e48fcfdCopy full SHA for e48fcfd
2 files changed
CHANGELOG.md
@@ -8,6 +8,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
8
- EC key operations would fail on some devices.
9
- Connecting to a host from the host list no longer asks which
10
app you want to use.
11
+- The text in the entropy gathering dialog is now scaled correctly.
12
13
## [1.8.4][1.8.4] - 2015-04-19
14
### Fixed
src/org/connectbot/util/EntropyView.java
@@ -66,7 +66,7 @@ private void setUpEntropy() {
66
mPaint.setAntiAlias(true);
67
mPaint.setTypeface(Typeface.DEFAULT);
68
mPaint.setTextAlign(Paint.Align.CENTER);
69
- mPaint.setTextSize(16);
+ mPaint.setTextSize(16f * getResources().getDisplayMetrics().density);
70
mPaint.setColor(Color.WHITE);
71
mFontMetrics = mPaint.getFontMetrics();
72
0 commit comments