Fix number overlay hotkeys conflict with screenshot in macos (#222)

This commit is contained in:
Red J Adaya
2024-08-14 14:38:02 -07:00
committed by GitHub
parent 961502916b
commit 688ed8a870
4 changed files with 35 additions and 16 deletions
+1 -1
View File
@@ -228,7 +228,7 @@ function BlockNum({ blockId }: { blockId: string }) {
}
const BlockMask = ({ blockId, preview, isFocused }: { blockId: string; preview: boolean; isFocused: boolean }) => {
const isLayoutMode = jotai.useAtomValue(atoms.cmdShiftDelayAtom);
const isLayoutMode = jotai.useAtomValue(atoms.controlShiftDelayAtom);
const [blockData] = WOS.useWaveObjectValue<Block>(WOS.makeORef("block", blockId));
const style: React.CSSProperties = {};