瀏覽代碼

Remove width dependency

Adding width to calculation does not affect the `getKeyWidth` and `getKeyLeft` methods.
master
TheoryOfNekomata 3 年之前
父節點
當前提交
d8163ebe7f
共有 1 個檔案被更改,包括 2 行新增2 行删除
  1. +2
    -2
      src/components/Keyboard/Keyboard.tsx

+ 2
- 2
src/components/Keyboard/Keyboard.tsx 查看文件

@@ -82,8 +82,8 @@ const Keyboard: React.FC<Props> = ({

const { natural: NaturalKey = DefaultNaturalKey, accidental: AccidentalKey = DefaultAccidentalKey } = keyComponents!

const getKeyWidth = React.useCallback((k) => getKeyWidthUnmemoized(startKey, endKey)(k), [startKey, endKey, width])
const getKeyLeft = React.useCallback((k) => getKeyLeftUnmemoized(startKey, endKey)(k), [startKey, endKey, width])
const getKeyWidth = React.useCallback((k) => getKeyWidthUnmemoized(startKey, endKey)(k), [startKey, endKey])
const getKeyLeft = React.useCallback((k) => getKeyLeftUnmemoized(startKey, endKey)(k), [startKey, endKey])
const isNaturalKey = React.useCallback((k) => isNaturalKeyUnmemoized(k), [])

React.useEffect(() => {


Loading…
取消
儲存