瀏覽代碼

Fix: right clicking while on the canvas messes up selection

hazam 5 年之前
父節點
當前提交
4a03fa8542
共有 1 個文件被更改,包括 3 次插入0 次删除
  1. 3 0
      src/index.tsx

+ 3 - 0
src/index.tsx

@@ -963,6 +963,9 @@ class App extends React.Component<{}, AppState> {
             }));
           }}
           onMouseDown={e => {
+            if (e.button !== 0) {
+              return;
+            }
             const x =
               e.clientX -
               (e.target as HTMLElement).offsetLeft -