Commit 1f0f9211 authored by Mygod's avatar Mygod

Remove padding for QR code

parent 7b7614db
...@@ -901,7 +901,6 @@ class Shadowsocks ...@@ -901,7 +901,6 @@ class Shadowsocks
private def showQrCode() { private def showQrCode() {
val image = new ImageView(this) val image = new ImageView(this)
image.setPadding(0, dp2px(20), 0, dp2px(20))
image.setLayoutParams(new LinearLayout.LayoutParams(-1, -1)) image.setLayoutParams(new LinearLayout.LayoutParams(-1, -1))
val qrcode = QRCode.from(Parser.generate(currentProfile)) val qrcode = QRCode.from(Parser.generate(currentProfile))
.withSize(dp2px(250), dp2px(250)).asInstanceOf[QRCode] .withSize(dp2px(250), dp2px(250)).asInstanceOf[QRCode]
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment