Skip to content

Commit d5af820

Browse files
committed
Merge branch 'fil/brush-x' into fil/brush-data-options
2 parents 2591b79 + 620ead0 commit d5af820

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

src/interactions/brush.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -285,8 +285,7 @@ function filterSignature2D(test, currentFx, currentFy) {
285285
: (x, y, fy) => (fy === undefined || fy === currentFy) && test(x, y)
286286
: currentFy === undefined
287287
? (x, y, fx) => (fx === undefined || fx === currentFx) && test(x, y)
288-
: (x, y, fx, fy) =>
289-
(fx === undefined || fx === currentFx) && (fy === undefined || fy === currentFy) && test(x, y);
288+
: (x, y, fx, fy) => (fx === undefined || fx === currentFx) && (fy === undefined || fy === currentFy) && test(x, y);
290289
}
291290

292291
function filterSignature1D(test, currentFx, currentFy) {
@@ -296,8 +295,7 @@ function filterSignature1D(test, currentFx, currentFy) {
296295
: (v, fy) => (fy === undefined || fy === currentFy) && test(v)
297296
: currentFy === undefined
298297
? (v, fx) => (fx === undefined || fx === currentFx) && test(v)
299-
: (v, fx, fy) =>
300-
(fx === undefined || fx === currentFx) && (fy === undefined || fy === currentFy) && test(v);
298+
: (v, fx, fy) => (fx === undefined || fx === currentFx) && (fy === undefined || fy === currentFy) && test(v);
301299
}
302300

303301
function intervalRound(interval, v) {

0 commit comments

Comments
 (0)