Skip to content

Commit

Permalink
[fix] switch back to numbers, to not block the image building process
Browse files Browse the repository at this point in the history
  • Loading branch information
hogoww committed Nov 29, 2021
1 parent 6a6dc68 commit c2e141e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Calypso-Browser/ClyQueryViewMorph.class.st
Expand Up @@ -127,12 +127,12 @@ Class {
{ #category : #accessing }
ClyQueryViewMorph class >> dragAndDropDelay [
"Modified by settings CodeBrowsing/Calypso: ClyFullBrowserMorph >> #settingsDragAndDropDelayOn:"
^ DragAndDropDelay asMilliSeconds
^ DragAndDropDelay
]

{ #category : #accessing }
ClyQueryViewMorph class >> dragAndDropDelay: aNumber [
DragAndDropDelay := Duration milliSeconds: aNumber
DragAndDropDelay := aNumber
]

{ #category : #'instance creation' }
Expand Down Expand Up @@ -470,7 +470,7 @@ ClyQueryViewMorph >> hasUserBeenFocusingOnItem: aSelectedItem [
hoverOverDropItemStartTime ifNil: [ ^ false].
aSelectedItem browserItem = targetDropItem browserItem ifFalse: [ ^ false ].

^ self class dragAndDropDelay * 1000 < (Time microsecondsSince: hoverOverDropItemStartTime)
^ self class dragAndDropDelay * 1000 < (Time microsecondsSince: hoverOverDropItemStartTime)
]

{ #category : #controlling }
Expand Down

0 comments on commit c2e141e

Please sign in to comment.