diff options
author | bobzel <zzzman@gmail.com> | 2025-04-30 14:31:55 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2025-04-30 14:31:55 -0400 |
commit | 082ffee0a2757f9e820fc708fceb5b38aca50f0f (patch) | |
tree | 9dd4c133a9c9cefbc52341fe6e5f76c301dc2cae /src/client/views/smartdraw/SmartDrawHandler.tsx | |
parent | 0e6d7b45c14301d426f85eeef0a96ab8dceebc25 (diff) | |
parent | 2296c314be710f983d595de37c9d8039d73568a6 (diff) |
Merge branch 'master' into aarav_edit
Diffstat (limited to 'src/client/views/smartdraw/SmartDrawHandler.tsx')
-rw-r--r-- | src/client/views/smartdraw/SmartDrawHandler.tsx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client/views/smartdraw/SmartDrawHandler.tsx b/src/client/views/smartdraw/SmartDrawHandler.tsx index 2283ef965..4f0cd3978 100644 --- a/src/client/views/smartdraw/SmartDrawHandler.tsx +++ b/src/client/views/smartdraw/SmartDrawHandler.tsx @@ -576,6 +576,7 @@ export class SmartDrawHandler extends ObservableReactComponent<object> { type="text" autoFocus value={this._userInput} + onPointerDown={e => e.stopPropagation()} onChange={action(e => this._canInteract && (this._userInput = e.target.value))} placeholder="Enter item to draw" onKeyDown={this.handleKeyPress} |