Randall O'Reilly

Results 295 comments of Randall O'Reilly

How about actually merging this, given that it was approved? :)

@kkoreilly pointed out that you can just do this: ``` mypackage/ mypackage.go ... mypackage/ main.go ``` (or the reverse, with the main at the top and package code below) in...

I thought that seemed too obvious to have overlooked this option before! The problem is that I really want the exe to be _in the upper level directory_ but then...

This bug is happening with the color picker still, even with the above code in reflectx.SetRobust -- there is some additional logic that needs to be updated in color picker.

I was able to replicate this on my linux laptop, with a discrete NVIDIA GPU. My first resize "grab and drag" usually works fine, but if I wait a beat...

ps. the underlying bug that causes this appears to be specific to NVIDIA. I tried several different driver versions using the ubuntu-driver tool as described here: https://ubuntu.com/server/docs/nvidia-drivers-installation. For my old-ish...

Ok the logic to avoid NVIDIA discrete GPU is now in place, in the #1341 PR, for both linux AND windows! I just got the exact same crash on windows...

@duggavo can you run with this env var set: export GPU_DEVICE_SELECT=0 so we are 100% sure it is using the integrated intel chip. And also can you try running examples/demo...

the offending code is in `filetree/file.go:392` -- it is doing `nfn.AddtoVCS()` where nfn is *supposed* to be the target path, but apparently isn't quite somehow..