Alex

Results 42 comments of Alex

@mhdshameel Yes, I temporarily show the window outside of the visible screen space and then hide it again once I get my callback with webview2 called.

@mhdshameel `put_IsVisible(true)` works? Well, it's a something I should try too :)

It seems this is caused by this: https://learn.microsoft.com/en-us/cpp/build/reference/zc-cplusplus?view=msvc-170. Is there a way to pass this compiler switch to b2?

So, it's required to pass `cxxflags="\"/Zc:__cplusplus\""` for the build to work properly under MSVC compiler. Please update docs / fix build system so one do not have to specify it...

> I believe this behavior is by design. silently ignoring disk errors is risky. The way you resume from a disk error (or any error to a torrent) is to...

> although, I agree that during the checking of files on disk it makes sense to be very tolerant of files being shorter than expected, for instance. Yes, that would...

> The way you resume from a disk error (or any error to a torrent) is to call `torrent_handle::clear_error()` This does not help. Can't resume such a torrent using clear_error().

I think that the only way to resume such a torrent for now is to drop broken fast resume data so LT will re-check existing files. Not a very good...

Yes, it seems that '?' is not allowed under Android. At least on FAT file system which is used for SD cards. https://stackoverflow.com/a/64021421/3765267 Samsung My Files app does not allow...

> how does this look? [#7828](https://github.com/arvidn/libtorrent/pull/7828) Thanks, it became better than ever. :) However, I would recommend to use raw string literals. Would it be possible to merge the fix...