Evan Su

Results 26 comments of Evan Su

I found a fix. Around line 82 in `clipboard_windows.go`, there is: ```go if r == 0 { _, _, _ = closeClipboard.Call() return "", err } ``` Just comment out...

@cydside Not sure if this satisfies your needs, but you can set a callback when the user tries to close a window. That's how I do cleanup in my program....

I'm not too sure to he honest, I'm not a C expert. What I usually do is install TDM-GCC, which is basically a simplified C/C++ compiler that installs in a...

I've really only tested on Windows. I compile giu programs on macOS and Linux, but since I do it via VirtualBox which doesn't support OpenGL, I can't see what the...

@AllenDang Not sure if this is related to this thread, but you can detect system language like this: ```go package main import ( "fmt" "github.com/HACKERALERT/jibber_jabber" ) func main(){ d,_ :=...

Not quite. Perhaps ImGui is having issues? Normal DPI: ![Screenshot (184)](https://user-images.githubusercontent.com/48808396/134976623-18997bbc-6529-4f84-9884-b7563ecc75f0.png) High DPI: ![Screenshot (196)](https://user-images.githubusercontent.com/48808396/134976633-750dff62-82aa-45bb-bcd2-01016d122b26.png)

@AllenDang just gave the master branch a try, it still has the same issue and looks the same as my second picture. Seems like a difficult problem to solve, I...

@AllenDang Almost there! Only a few more issues to sort out 😄 . ![Screenshot (197)](https://user-images.githubusercontent.com/48808396/137603742-4bbc7946-19aa-4f19-ac84-ce725a8d33d2.png)

That's been requested before, but due to the way Picocrypt is designed, this is not possible. The reason hidden volumes are possible within VeraCrypt is because it preallocates a volume...

You could also record at 15FPS and then only keep 1 DNG for every 15, which would effectively give you 1 FPS. Similarly, recording at 15FPS and keeping every 3rd...