We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b7b843 commit cfcecfdCopy full SHA for cfcecfd
slip39/gui/main.py
@@ -270,8 +270,10 @@ def groups_layout(
270
key=f"-CRYPTO-{c}-", **B_kwds )
271
for c in c_row
272
]
273
- for c_row in chunker( sorted( Account.CRYPTOCURRENCIES ),
274
- int( round( math.sqrt( len( Account.CRYPTOCURRENCIES )))))
+ for c_row in chunker(
+ list( Account.CRYPTO_NAMES.values() ), # Retain ordering vs. CRYPTOCURRENCIES set
275
+ int( round( math.sqrt( len( Account.CRYPTOCURRENCIES )) + .5 ))
276
+ )
277
], visible=LO_REC )
278
] + [
279
sg.Frame( 'Paper Wallet Password/Hint (empty, if no Paper Wallets desired)', [
0 commit comments