Be
Be
### Guidelines - [X] I have read the guidelines. ### Version/Commit hash 13914c5125da4eab6f8ca68bddd5fdab71e30683 ### Describe the bug. There are lots of places in the code where "Audacity", "audacity", or "AUDACITY"...
FIDO is more secure (no shared secret, resistant to phishing) and easier to use (just push a button) than OTP. It would be great if this library supported it.
Calling `hid_enumerate` with the hidraw Linux backend returns lots of duplicate `hid_device_info`s for the same device. I have to filter out duplicates by comparing the paths of the devices: https://github.com/mixxxdj/mixxx/pull/4054/files/6dd77b1fa61a2101e2dfac7cb7af85bf5eab168b#r663541357
The Linux libusb and macOS backends maintain an internal buffer of 30 (where did this number come from?) input reports. If I understand correctly, when hid_read is called repeatedly, one...
Uncompressed PCM data is sometimes stored in AIFF files rather than WAV. It would be nice to add support for this.
Ctrl + Backspace is a common shortcut for deleting words, but in Slint LineEdit and TextEdit, it behaves the same as Backspace by deleting one character at a time.
With the mouse cursor on a ComboBox, using the mouse wheel does nothing. I would expect it to select the next/previous value.
With the mouse cursor on a SpinBox, using the mouse wheel does nothing. I would expect it to be equivalent to clicking the up/down arrows.
Using the mouse scroll wheel on the content area of a ScrollView scrolls the view, but if the cursor is over the scroll bar, the view is not scrolled.
My application uses a ListView to display data from a database. Data is fetched from the database asynchronously in paginated chunks. Presently it seems there isn't a means for the...