append return after password paste

This commit is contained in:
open-trade 2020-12-21 19:08:54 +08:00
parent 0ed605717f
commit 8455c69733

View File

@ -804,7 +804,10 @@ void showActions(BuildContext context) async {
}
}();
} else if (value == 'enter_os_password') {
if (password != "") FFI.setByName('input_string', password);
if (password != "") {
FFI.setByName('input_string', password);
FFI.inputKey('VK_RETURN');
}
}
}();
}