Wesley Ranger

Results 34 comments of Wesley Ranger

@miaomiaosoft 这个确实,我也发现过,同样的资源80就是好着的。不过如何替换呢?有软件规则还是每次下载时手动修改?

I have just triggered the same issue as @GitStorageOne. I had restored the file from Windows file history service, but the file is covered by the newer version a few...

I am faced with the same problem. Desktop app.

That's reasonable because it seems laverna only stores the files in bowser cache.

@Grimler91 Thanks for the rapid help. I tried to add the below lines to the `setup_fake_proc()` function but got no fortune. ``` if [ ! -d "${INSTALLED_ROOTFS_DIR}/${distro_name}/proc/sys/fs/inotify" ]; then mkdir...

Well, the following hack indeed eliminates the error about `/proc/sys/fs/inotify/max_user_watches`, and `cat /proc/sys/fs/inotify/max_user_watches` runs normally now. In `setup_fake_proc()`: ``` if [ ! -d "${INSTALLED_ROOTFS_DIR}/${distro_name}/proc/sys/fs/inotify" ]; then mkdir -p "${INSTALLED_ROOTFS_DIR}/${distro_name}/proc/sys/fs/inotify" chmod...

I think I found a workaround, which is not exciting but acceptable. I guessed that `qtwebengine` is doing that for hardware acceleration, so I passed a command-line `--disable-gpu` to these...

@wmcbtech30 Following your advice, I tried a few environment variables. Turned out `QTWEBENGINE_DISABLE_SANDBOX=1` doesn't help, but `QTWEBENGINE_CHROMIUM_FLAGS="--disable-gpu"` does the trick. With this flag, `qtcreator` now safely opens the `*.ui` file...