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 f9442d5 commit e47e72eCopy full SHA for e47e72e
slip39/gui/main.py
@@ -556,7 +556,7 @@ def app(
556
while event not in events_termination:
557
# Create window (for initial window.read()), or update status
558
if window:
559
- window['-STATUS-'].update( status or 'OK', font=font_bold if status_error else font )
+ window['-STATUS-'].update( f"{status or 'OK':.145}{'...' if len(status)>145 else ''}", font=font_bold if status_error else font )
560
window['-SAVE-'].update( disabled=status_error )
561
window['-RECOVERY-'].update( f"of {len(groups)}" )
562
window['-SD-SEED-F-'].expand( expand_x=True )
0 commit comments