-
Notifications
You must be signed in to change notification settings - Fork 497
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add an option to select a component from the list by clicking instead of hovering #88
Comments
I'll keep this low priority since there are already shortcuts for bom navigation. Just move mouse away from the table and use keyboard if you want to avoid accidentally switching active row. |
That assumes quite much about the working environment and other restrictions of the user. I have difficulties with this issue. |
This is now possible using custom js. EventHandler.registerCallback(IBOM_EVENT_TYPES.BOM_BODY_CHANGE_EVENT, () => {
for(var tr of bom.childNodes) {
tr.onclick = tr.onmousemove;
tr.onmousemove = null;
};
}); Now highlight will be bound to click event instead of hover. |
I have created What am I missing? (I'm using the 2.7.0 InteractiveHtmlBom.zip release.) |
How are you running the plugin? |
I'm unsure what you're asking exactly, but I'm using it from KiCad 7.0.7 running on Linux Mint. |
So you are clicking the button (or launching from menu) in Pcbnew? If so then most likely you did not put You should put |
That did the trick, thanks! The correct directory on my system is |
I'd like to have an option that could let me select a component, from the list, only by clicking on it, not by simply hovering it.
With "hovering selection", if you slightly move your mouse over the list, the map highlights some other component. This can mislead you when assembling your board.
Thank you!
David
The text was updated successfully, but these errors were encountered: