@@ -4,6 +4,6 @@ import { BoxShape, type Shape } from '../shapes'
export class BoxTool extends TLBoxTool<BoxShape, Shape, TLReactEventMap> {
static id = 'box'
- static shortcut = ['8']
+ static shortcut = ['7']
Shape = BoxShape
}
@@ -4,5 +4,5 @@ import type { Shape } from '../shapes'
export class NuEraseTool extends TLEraseTool<Shape, TLReactEventMap> {
static id = 'erase'
- static shortcut = ['5']
+ static shortcut = ['4']
@@ -4,7 +4,7 @@ import { HighlighterShape, type Shape } from '../shapes'
export class HighlighterTool extends TLDrawTool<HighlighterShape, Shape, TLReactEventMap> {
static id = 'highlighter'
- static shortcut = ['4']
+ static shortcut = ['3']
Shape = HighlighterShape
simplify = true
simplifyTolerance = 0.618
@@ -6,6 +6,6 @@ import { LineShape, type Shape } from '../shapes'
export class LineTool extends TLLineTool<LineShape, Shape, TLReactEventMap> {
static id = 'line'
// not sure why "c" is not working in Logseq?
- static shortcut = ['6']
+ static shortcut = ['5']
Shape = LineShape
@@ -9,7 +9,7 @@ export class LogseqPortalTool extends TLTool<
TLApp<Shape, TLReactEventMap>
> {
static id = 'logseq-portal'
- static shortcut = ['9']
+ static shortcut = ['1']
static states = [IdleState, CreatingState]
static initial = 'idle'
@@ -4,7 +4,7 @@ import { PencilShape, type Shape } from '../shapes'
export class PencilTool extends TLDrawTool<PencilShape, Shape, TLReactEventMap> {
static id = 'pencil'
- static shortcut = ['3']
+ static shortcut = ['2']
Shape = PencilShape
simplify = false
@@ -4,6 +4,6 @@ import { TextShape, type Shape } from '../shapes'
export class TextTool extends TLTextTool<TextShape, Shape, TLReactEventMap> {
static id = 'text'
- static shortcut = ['7']
+ static shortcut = ['6']
Shape = TextShape
@@ -10,7 +10,7 @@ export class TLMoveTool<
R extends TLApp<S, K> = TLApp<S, K>
> extends TLTool<S, K, R> {
static id = 'move'
- static shortcut = ['2']
+ static shortcut = ['9']
static states = [IdleState, IdleHoldState, PanningState, PinchingState]
@@ -33,7 +33,7 @@ export class TLSelectTool<
- static shortcut = ['1']
+ static shortcut = ['8']
static states = [
IdleState,