edwloef
edwloef
Disabling the detuner and restarting worked, and I was able to enable it again in the running instance and nothing happened. Additionally now I can no longer reproduce the issue...
> **Found solution here!** See https://forums.developer.nvidia.com/t/cannot-suspend-gtx3060-laptop/244143/12 > > 1. Download the [nvidia-services-install.zip](https://forums.developer.nvidia.com/uploads/short-url/2ZtALqhLyZlrEx0a5ulzFsc3CXD.zip) > > 2. `cd ~/Downloads/` then extract `sudo unzip nvidia-services-install.zip -d /usr/share/doc/nvidia-driver-545/` (change the driver version number to...
Another idea I've had recently is to pass the mouse position in the `ButtonPressed` message as it is in the `CursorMoved` message, since that seems like a logical thing to...
> The counter argument is that creating your own widget isn't that hard and you could always make a button which includes this information in a third-party crate or directly...
Hmm, after going through all the built-in widgets and seeing where this could be used instead of the old workaround, I've noticed that for this to really be useful, the...
Considering I've just found myself wishing for access to the modifiers in `fn draw`, adding them as a parameter is what I would ideally like happen.
Another bit to consider is that with the current solution you don't actually know the state of the modifiers when the widget is created, so you have to wait for...
A better solution to this could be checking whether the theme has changed in the `draw` function, something like this: https://github.com/generic-daw/generic-daw/blob/d2d1c5f95733cd0169ffe03346491cfb959b9049/generic_daw_gui/src/widget/knob.rs#L205-L213
`ScrollDelta::Pixels` is fired when e.g. scrolling on a trackpad.
I personally would appreciate being able to create iterators over the various `AudioBuffer`-style types, without having to put my own `Vec` in the middle and copying to and from that....