Skip to content

Commit

Permalink
change default promise progress delay to 500ms
Browse files Browse the repository at this point in the history
  • Loading branch information
jjallaire committed Mar 20, 2020
1 parent 3d53753 commit 41c02bb
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -38,7 +38,7 @@ public PromiseWithProgress(Promise<V> promise, String progress, V errorVal, Comm
{
// setup progress
GlobalDisplay globalDisplay = RStudioGinjector.INSTANCE.getGlobalDisplay();
ProgressIndicator indicator = new GlobalProgressDelayer(globalDisplay, 300, progress).getIndicator();
ProgressIndicator indicator = new GlobalProgressDelayer(globalDisplay, 500, progress).getIndicator();

// execute the promise
promise.then(new ThenOnFulfilledCallbackFn<V,V>() {
Expand Down

0 comments on commit 41c02bb

Please sign in to comment.