Skip to content

Commit b67af16

Browse files
committed
Work toward simplified BIP-39 "Backup" controls
1 parent c622213 commit b67af16

File tree

2 files changed

+84
-82
lines changed

2 files changed

+84
-82
lines changed

slip39/defaults.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,12 +84,17 @@
8484
)
8585

8686
# The available GUI controls Layout Options
87-
LAYOUT = 'Basic'
87+
LAYOUT = 'Backup'
8888
LAYOUT_OPTIONS = [
89-
'Basic',
89+
'Backup',
90+
'Create',
9091
'Recover',
9192
'Pro',
9293
]
94+
LAYOUT_BAK = 0
95+
LAYOUT_CRE = 1
96+
LAYOUT_REC = 2
97+
LAYOUT_PRO = 3
9398

9499
BITS = (128, 256, 512)
95100
BITS_DEFAULT = 128

0 commit comments

Comments
 (0)