scouting: Lower the default QR code density to 450
The scouts are having trouble scanning the QR codes. They could
manually change the setting every time they want to save a QR code,
but it's easier to change the default for now.
Ideally, we'd make it so the setting is remembered between
submissions. Having it reset every time is annoying.
Signed-off-by: Philipp Schrader <philipp.schrader@gmail.com>
Change-Id: Ic681a3862e59d958fdebc5f9295d150f54d5a8c4
diff --git a/scouting/www/entry/entry.component.ts b/scouting/www/entry/entry.component.ts
index ca5d0b8..83502ea 100644
--- a/scouting/www/entry/entry.component.ts
+++ b/scouting/www/entry/entry.component.ts
@@ -73,7 +73,7 @@
const QR_CODE_PIECE_SIZES = [150, 300, 450, 600, 750, 900];
// The default index into QR_CODE_PIECE_SIZES.
-const DEFAULT_QR_CODE_PIECE_SIZE_INDEX = QR_CODE_PIECE_SIZES.indexOf(750);
+const DEFAULT_QR_CODE_PIECE_SIZE_INDEX = QR_CODE_PIECE_SIZES.indexOf(450);
// The actions that are purely used for tracking state. They don't actually
// have any permanent meaning and will not be saved in the database.