Anthony Moles
Anthony Moles
I'm having this issue too
I got this error when the length of the documents was 0 Try checking the contents of documents before loading into Chroma
Same issue. Curiously, multiplying the width/height of the viewport by `devicepixelratio` allows wheel events to work on the whole screen, but the mouse position calculation is wrong so it's a...
I renamed `LightingData` to `CustomLightingData` and it compiles fine
I've seen users add `onMouseDown={(e) => e.preventDefault()}` to menu items to prevent losing editor focus/selection. Obviously it would be nice if this wasn't an issue.
Reordering the list so index 0 is at the bottom can be achieved with css: ``` display: flex; flex-direction: column-reverse; ``` However, with this approach the arrow key behaviour is...
I remapped the arrow commands, but it's certainly an inelegant work-around: ``` useEffect(() => { return mergeRegister( editor.registerCommand( KEY_ARROW_UP_COMMAND, (payload) => { console.log("up to down") const event = payload if...