1
0
mirror of https://github.com/elisspace/autopsy.git synced 2026-09-15 15:32:59 +00:00

Merge pull request #6109 from wschaeferB/6561-ReduceChanceOfFreeze

6561 perform fewer repaints farther appart in order to reduce load on…
This commit is contained in:
Ann Priestman
2020-07-21 14:19:24 -04:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -52,7 +52,7 @@ public final class DiscoveryTopComponent extends TopComponent {
private final ResultsPanel resultsPanel;
private int dividerLocation = -1;
private static final int ANIMATION_INCREMENT = 10;
private static final int ANIMATION_INCREMENT = 30;
private static final int RESULTS_AREA_SMALL_SIZE = 250;
private SwingAnimator animator = null;

View File

@@ -39,7 +39,7 @@ final class SwingAnimator {
private Timer timer = null;
//duration in milliseconds betweeen each firing of the Timer
private static final int INITIAL_TIMING = 10;
private static final int INITIAL_TIMING = 30;
private int timing = INITIAL_TIMING;
/**