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 075ed44 commit 7777ebeCopy full SHA for 7777ebe
shared/actions.py
@@ -1910,11 +1910,10 @@ async def usb_keyboard_emulation(enable):
1910
# just sets emu flag on and adds Entry Password into top menu
1911
# no USB switching at this point
1912
# - need to force reload of main menu, so it shows/hides
1913
- if ckcc.is_simulator():
1914
- goto_top_menu()
1915
- else:
1916
- m = the_ux.top_of_stack()
1917
- m.update_contents()
+ from flow import NormalSystem
+ for item in the_ux.stack:
+ if "Ready To Sign" in [i.label for i in item.items]:
+ item.replace_items(NormalSystem)
1918
1919
async def change_nfc_enable(enable):
1920
# NFC enable / disable
0 commit comments