diff options
Diffstat (limited to 'js/panels/Timeline/TimelinePanel.reel')
-rw-r--r-- | js/panels/Timeline/TimelinePanel.reel/TimelinePanel.js | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/js/panels/Timeline/TimelinePanel.reel/TimelinePanel.js b/js/panels/Timeline/TimelinePanel.reel/TimelinePanel.js index 470062ba..ceb37db6 100644 --- a/js/panels/Timeline/TimelinePanel.reel/TimelinePanel.js +++ b/js/panels/Timeline/TimelinePanel.reel/TimelinePanel.js | |||
@@ -243,6 +243,10 @@ var TimelinePanel = exports.TimelinePanel = Montage.create(Component, { | |||
243 | value: false | 243 | value: false |
244 | }, | 244 | }, |
245 | 245 | ||
246 | _areTracksCollapsing: { | ||
247 | value: false | ||
248 | }, | ||
249 | |||
246 | _currentOpenSpanMenu: { | 250 | _currentOpenSpanMenu: { |
247 | value: false | 251 | value: false |
248 | }, | 252 | }, |
@@ -687,6 +691,14 @@ var TimelinePanel = exports.TimelinePanel = Montage.create(Component, { | |||
687 | // We have shuffled layers, so we need to update this.selectedLayers. | 691 | // We have shuffled layers, so we need to update this.selectedLayers. |
688 | this.selectLayers([]) | 692 | this.selectLayers([]) |
689 | } | 693 | } |
694 | |||
695 | // Do we need to scroll the layers? | ||
696 | if (this._areTracksCollapsing !== false) { | ||
697 | //console.log("diddraw: user_layers, layout_tracks", this.user_layers.scrollTop, this.layout_tracks.scrollTop); | ||
698 | //this.layout_tracks.scrollTop = this.user_layers.scrollTop;\ | ||
699 | this.layout_tracks.scrollTop = this._areTracksCollapsing; | ||
700 | this._areTracksCollapsing = false; | ||
701 | } | ||
690 | } | 702 | } |
691 | }, | 703 | }, |
692 | 704 | ||
@@ -1097,11 +1109,25 @@ var TimelinePanel = exports.TimelinePanel = Montage.create(Component, { | |||
1097 | this.drawTimeMarkers(); | 1109 | this.drawTimeMarkers(); |
1098 | } | 1110 | } |
1099 | }, | 1111 | }, |
1112 | |||
1113 | synchScrollbars: { | ||
1114 | value: function(intScrollBy) { | ||
1115 | //this.updateLayerScroll(); | ||
1116 | //this.user_layers.scrollTop = 0; | ||
1117 | //this.layout_tracks.scrollTop = this.user_layers.scrollTop; | ||
1118 | //console.log("synch: user_layers, layout_tracks", this.user_layers.scrollTop, this.layout_tracks.scrollTop); | ||
1119 | this._areTracksCollapsing = this.layout_tracks.scrollTop - intScrollBy; | ||
1120 | this.needsDraw = true; | ||
1121 | |||
1122 | } | ||
1123 | }, | ||
1100 | 1124 | ||
1101 | updateLayerScroll:{ | 1125 | updateLayerScroll:{ |
1102 | value:function () { | 1126 | value:function () { |
1127 | //console.log("TimelinePanel.updateLayerScroll") | ||
1103 | this._areTracksScrolling = true; | 1128 | this._areTracksScrolling = true; |
1104 | this.needsDraw = true; | 1129 | this.needsDraw = true; |
1130 | |||
1105 | } | 1131 | } |
1106 | }, | 1132 | }, |
1107 | 1133 | ||