Nuked88 / ComfyUI-N-Sidebar

A simple sidebar for your ConfyUI!
MIT License
515 stars 26 forks source link

Mac - alt (which is option key) keys don't work #89

Closed scruffynerf closed 4 months ago

scruffynerf commented 4 months ago

Added Sidebar, and couldn't find the settings. Read issues, and learned that alt-g was the way to open it. Except no key combo (which should be option-G) worked, on 2 different browsers (Firefox and Brave), on MacOS modified:

function handleKeyPress(event) {
    if (event.altKey 

events to:

function handleKeyPress(event) {

    if (event.ctrlKey 

and it worked with ctrl-G. So please add an alternative choice to 'alt', which doesn't seem to work on Macs, despite that it should.

Nuked88 commented 4 months ago

Hi! Can you try now ( with the option key )?

scruffynerf commented 4 months ago

Hi! Can you try now ( with the option key )?

Yes. v1.2.3 fixes it. Thanks!