0xFar5eer

Results 3 comments of 0xFar5eer

I have the same question how to copy text from text_edit ? I even tried like this, but does not work: ` if ui.text_edit_singleline(link_to_profile).clicked() { ui.output().copied_text = link_to_profile.to_string(); }` Any...

Just solved this kind of problem. In case someone needs it: ``` fn convert_int256_to_f64(value: U256) -> Option { let half_of_max_u256 = U256::from(u128::MAX); let is_negative = value > half_of_max_u256; let value...

Did you try adding these patches to Cargo.toml? ``` [patch.crates-io] hyper = { git = "https://github.com/4JX/hyper.git", branch = "0.14.x-patched" } h2 = { git = "https://github.com/4JX/h2.git", branch = "maybefix" }...