Hello everyone,
I'm using Lazarus on macOS M1 with the minimal Virtual TreeView test project. Whenever I press the arrow-down key to move to the next sibling, I hear a beep. I want to disable just that beep while keeping normal tree navigation intact.
I've tried:
1. Setting `Message.Result := 1` in `WMKeyDown`, but it didn't stop the beep.
2. Overriding the `OnKeyDown` event and setting `Key := 0` removes the beep and stops the tree from navigating.
Neither of these solutions worked for me on macOS M1 in the minimal Virtual TreeView test project. Does anyone know a method to cleanly remove the beep sound but keep the arrow key navigation? Any help would be much appreciated.
Thank you!