From 8e6933b5cad87af1f83bb2b8f49394e69b4d9022 Mon Sep 17 00:00:00 2001 From: Craig Raw Date: Fri, 9 Jul 2021 08:23:40 +0200 Subject: [PATCH] increase animation rate and fragment length for UR QRs --- .../com/sparrowwallet/sparrow/control/QRDisplayDialog.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/sparrowwallet/sparrow/control/QRDisplayDialog.java b/src/main/java/com/sparrowwallet/sparrow/control/QRDisplayDialog.java index f06e9ad2..92b4f0c3 100644 --- a/src/main/java/com/sparrowwallet/sparrow/control/QRDisplayDialog.java +++ b/src/main/java/com/sparrowwallet/sparrow/control/QRDisplayDialog.java @@ -33,9 +33,9 @@ public class QRDisplayDialog extends Dialog { private static final Logger log = LoggerFactory.getLogger(QRDisplayDialog.class); private static final int MIN_FRAGMENT_LENGTH = 10; - private static final int MAX_FRAGMENT_LENGTH = 100; + private static final int MAX_FRAGMENT_LENGTH = 250; - private static final int ANIMATION_PERIOD_MILLIS = 400; + private static final int ANIMATION_PERIOD_MILLIS = 200; private static final int QR_WIDTH = 480; private static final int QR_HEIGHT = 480;