Match platform specifics for dragDelay of text
On Mac we keep it at 150ms. On other platforms it either does not exist or at most it's very small. This fixes issue #1879
This commit is contained in:
parent
ffe22ce2be
commit
2dcc4a3f04
1 changed files with 1 additions and 1 deletions
|
|
@ -192,7 +192,7 @@ var MouseHandler = function(editor) {
|
|||
|
||||
config.defineOptions(MouseHandler.prototype, "mouseHandler", {
|
||||
scrollSpeed: {initialValue: 2},
|
||||
dragDelay: {initialValue: 150},
|
||||
dragDelay: {initialValue: (useragent.isMac ? 150 : 0)},
|
||||
dragEnabled: {initialValue: true},
|
||||
focusTimout: {initialValue: 0},
|
||||
tooltipFollowsMouse: {initialValue: true}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue