summaryrefslogtreecommitdiff
path: root/filter
diff options
context:
space:
mode:
authorThorsten Behrens <Thorsten.Behrens@CIB.de>2017-04-17 03:42:05 +0200
committerThorsten Behrens <Thorsten.Behrens@CIB.de>2017-04-17 04:54:48 +0200
commit5b5fa803b3a8be9c43d725692b6015323b04dceb (patch)
treef5f2bd6e11f8432f9d3c0e81bf23c5e0c97e3090 /filter
parent0addc668d60ba16f8cb9884985fab3ea7d86d61b (diff)
svg filter: fix eslint no-fallthrough
Change-Id: I2cbc4757042ed3934b0badff03fa291c9f36b6da
Diffstat (limited to 'filter')
-rw-r--r--filter/source/svg/presentation_engine.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/filter/source/svg/presentation_engine.js b/filter/source/svg/presentation_engine.js
index 55d5194839af..8eee5535b0aa 100644
--- a/filter/source/svg/presentation_engine.js
+++ b/filter/source/svg/presentation_engine.js
@@ -9747,6 +9747,9 @@ function createClipPolyPolygon( nType, nSubtype )
return new BarnDoorWipePath(true /* Doubled */);
case DOUBLEDIAMOND_TRANS_SUBTYPE:
return new DoubleDiamondWipePath();
+ default:
+ log( 'createClipPolyPolygon: unhandled subtype: ' + nSubtype );
+ return null;
}
case DISSOLVE_TRANSITION:
return new RandomWipePath( 16 * 16, false /* dissolve */ );