Fixed: #1622 Slow scrolling (search results, advanced settings and others)

This commit is contained in:
Jindra Petřík
2021-03-05 21:22:55 +01:00
parent a597625239
commit b08567de7a
31 changed files with 116 additions and 56 deletions
@@ -17,6 +17,7 @@
package com.jpexs.decompiler.flash.gui.timeline;
import com.jpexs.decompiler.flash.configuration.Configuration;
import com.jpexs.decompiler.flash.gui.FasterScrollPane;
import com.jpexs.decompiler.flash.timeline.Timeline;
import com.jpexs.decompiler.flash.timeline.Timelined;
import java.awt.BorderLayout;
@@ -85,7 +86,7 @@ public class TimelinePanel extends JPanel {
timelineBodyPanel = new TimelineBodyPanel(timeline);
setLayout(new BorderLayout());
JScrollPane sp = new JScrollPane(timelineBodyPanel);
JScrollPane sp = new FasterScrollPane(timelineBodyPanel);
depthPanel = new TimelineDepthPanel(timeline);