Skip to content

Commit

Permalink
fixes acejump#251
Browse files Browse the repository at this point in the history
  • Loading branch information
breandan committed Jul 23, 2019
1 parent 88fe22a commit 4c8ee2a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/kotlin/org/acejump/control/Trigger.kt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package org.acejump.control

import com.intellij.openapi.diagnostic.Logger
import org.jetbrains.concurrency.runAsync
import org.acejump.search.runLater
import java.lang.System.currentTimeMillis

/**
Expand Down Expand Up @@ -38,6 +38,6 @@ object Trigger: () -> Unit {
operator fun invoke(withDelay: Long = 750, event: () -> Unit = {}) {
delay = withDelay
invokable = event
runAsync(this)
runLater(this)
}
}

0 comments on commit 4c8ee2a

Please sign in to comment.