Increase QR code margin in receive screen.

- Increased the margin of the QR codes generated in the Receive Transaction screen, so that they are easier to read using low end devices, specially when the app is in night mode.
master
Severiano Jaramillo 2019-11-05 20:13:13 -06:00
parent 28113af98a
commit 710ba72875
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ class ReceiveTransactionViewModel(application: Application) : AndroidViewModel(a
withContext(Default) {
val hints = HashMap<EncodeHintType, Any>()
hints[EncodeHintType.MARGIN] = 1
hints[EncodeHintType.MARGIN] = 2
val result = MultiFormatWriter().encode(
data,
BarcodeFormat.QR_CODE, size, size, hints