We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24ce1ff commit 9df10dbCopy full SHA for 9df10db
js/TimelineAnimations.js
@@ -272,6 +272,12 @@ function TimelineAnimations( editor ) {
272
container.setHeight( '100%' );
273
container.setBackground( 'linear-gradient(#555 1px, transparent 1px) 0% 0% / 32px 32px repeat' );
274
275
+ container.dom.addEventListener( 'click', function ( event ) {
276
+
277
+ editor.selectAnimation( null );
278
279
+ }, true );
280
281
container.dom.addEventListener( 'dblclick', function ( event ) {
282
283
var start = event.offsetX / scale;
@@ -280,7 +286,7 @@ function TimelineAnimations( editor ) {
286
287
editor.createAnimation( start, end, layer );
288
- } );
289
284
290
285
291
// signals
292
0 commit comments