Skip to content

Commit

Permalink
#238: disables mouseover effect entirely until paint issue (#262) is …
Browse files Browse the repository at this point in the history
…resolved
  • Loading branch information
rladstaetter committed Oct 27, 2024
1 parent 4c93302 commit ebe9744
Showing 1 changed file with 3 additions and 3 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, OsUtil}
import app.logorrr.util.{CanLog, JfxUtils}
import app.logorrr.views.search.Filter
import javafx.animation.{KeyFrame, Timeline}
import javafx.beans.property.{ReadOnlyDoubleProperty, SimpleIntegerProperty}
Expand Down Expand Up @@ -88,8 +88,8 @@ class ChunkListCell(selectedLineNumberProperty: SimpleIntegerProperty
}
}

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

0 comments on commit ebe9744

Please sign in to comment.