Skip to content

Commit

Permalink
#238: disables mousemoved handler until #262 is resolved
Browse files Browse the repository at this point in the history
  • Loading branch information
rladstaetter committed Oct 26, 2024
1 parent a8bf0f3 commit 531a108
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package app.logorrr.views.block

import app.logorrr.model.LogEntry
import app.logorrr.util.{CanLog, JfxUtils}
import app.logorrr.util.{CanLog, JfxUtils, OsUtil}
import app.logorrr.views.search.Filter
import javafx.animation.{KeyFrame, Timeline}
import javafx.beans.property.{ReadOnlyDoubleProperty, SimpleIntegerProperty}
Expand Down Expand Up @@ -88,7 +88,10 @@ class ChunkListCell(selectedLineNumberProperty: SimpleIntegerProperty
}
}

setOnMouseMoved(mouseMovedHandler)
// see #262 - until this is fixed don't activate the mousemoved handler on windows
if (OsUtil.isMac) {
setOnMouseMoved(mouseMovedHandler)
}
setOnMouseClicked(mouseClickedHandler)


Expand Down

0 comments on commit 531a108

Please sign in to comment.