Skip to content

Commit b2360dd

Browse files
committed
Fix Save button, broken when a key was added to it.
1 parent d7d38f0 commit b2360dd

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

SLIP39.spec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@ app = BUNDLE(coll,
5050
name='SLIP39.app',
5151
icon='images/SLIP39.icns',
5252
bundle_identifier='ca.kundert.perry.SLIP39',
53-
version='6.4.0',
53+
version='6.4.1',
5454
info_plist={
55-
'CFBundleVersion':'6.4.0',
55+
'CFBundleVersion':'6.4.1',
5656
'LSApplicationCategoryType':'public.app-category.utilities',
5757
'LSMinimumSystemVersion':'10.15.0',
5858
})

slip39/gui/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -678,7 +678,7 @@ def app(
678678
# If we get here, no failure status has been detected, and SLIP39 mnemonic and account
679679
# details { "name": <details> } have been created; we can now save the PDFs; converted
680680
# details is now { "<filename>": <details> })
681-
if event == 'Save':
681+
if event == '-SAVE-':
682682
try:
683683
card = next( c for c in CARD_SIZES if values[f"-CS-{c}"] )
684684
details = write_pdfs(

slip39/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version_info__ = ( 6, 4, 0 )
1+
__version_info__ = ( 6, 4, 1 )
22
__version__ = '.'.join( map( str, __version_info__ ))

0 commit comments

Comments
 (0)