Skip to content

Commit

Permalink
0.17.6-9, 2.6.3-beta-1
Browse files Browse the repository at this point in the history
  • Loading branch information
zsviczian committed Oct 30, 2024
1 parent cd1ad09 commit a02fff6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions packages/excalidraw/components/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7089,6 +7089,7 @@ class App extends React.Component<AppProps, AppState> {
(event.button === POINTER_BUTTON.WHEEL ||
(event.button === POINTER_BUTTON.MAIN && isHoldingSpace) ||
isHandToolActive(this.state) ||
//zsviczian
isTouchInPenMode(this.state, event) ||
//!isLaserPointerActive added by zsviczian (but don't remember why....)
(this.state.viewModeEnabled && !isLaserPointerActive(this.state)))
Expand Down
2 changes: 1 addition & 1 deletion packages/excalidraw/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@zsviczian/excalidraw",
"version": "0.17.6-8",
"version": "0.17.6-9",
"main": "main.js",
"types": "types/excalidraw/index.d.ts",
"files": [
Expand Down
3 changes: 2 additions & 1 deletion packages/utils/export.ts
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,8 @@ export { getCommonBoundingBox } from "../excalidraw/element/bounds"; //zsviczian
export { getMaximumGroups } from "../excalidraw/groups"; //zsviczian
export { intersectElementWithLine } from "../excalidraw/element/binding"; //zsviczian
export { determineFocusDistance } from "../excalidraw/element/binding"; //zsviczian
export { measureText, wrapText } from "../excalidraw/element/textElement"; //zsviczian
export { measureText } from "../excalidraw/element/textElement"; //zsviczian
export { wrapText } from "../excalidraw/element/textWrapping"; //zsviczian
export { getLineHeight } from "../excalidraw/fonts/index"; //zsviczian
export { getFontString, getFontFamilyString } from "../excalidraw/utils"; //zsviczian
export { getBoundTextMaxWidth } from "../excalidraw/element/textElement"; //zsviczian
Expand Down

0 comments on commit a02fff6

Please sign in to comment.