Omar

Results 16 comments of Omar

I ran into the same issue with a few songs. Here's the first 200 bytes from one. Let me know if more would be helpful. ``` $ cat print_bytes.py file...

I had the same error message on Debian bookworm. I installed both pkg-config and libusb-dev and then everything worked. From the comment above, perhaps only pkg-config was needed. I thought...

Specific instances I've tested personally by modifying glfw/browser.go to print the actual wheel event: ``` document.AddEventListener("wheel", false, func(event dom.Event) { we := event.(*dom.WheelEvent) log.Printf("Wheel Event: %#v", we) ``` and then...

I realized this can be tested more easily with a bit of javascript. Open up a web console in any browser (tested on chrome + firefox), and enter the following:...

> What did you do? - On desktop I ran `github.com\goxjs\glfw\tests\events\main.go` to print the scroll delta. This printed +1 or -1 for single mouse scrollwheel steps. - I tried the...

Yes, correct. Fixed the post.

I think I found a situation which is not possible to reconcile between the browser and desktop, unless I'm missing an information source. Environment: Windows 10 Chrome Version 55.0.2883.87 m...

> how critical is fixing this bug for you? What timeline are you on? I'd much prefer to wait and do it right than to get a hack in quickly....

I thought about the issue since last posting and came to the same conclusion. Maintaining desktop GLFW behavior in the browser requires taking the whole window. Using only a canvas...

Thanks for the helper utilities. I translated the js function and put it in [https://github.com/Omustardo/wheel](https://github.com/Omustardo/wheel) I can move it somewhere else if desired. In doing the translation, I made a...