Skip to content

Commit

Permalink
Change scroll sample rate
Browse files Browse the repository at this point in the history
  • Loading branch information
RolandPheasant committed Nov 17, 2015
1 parent ab92800 commit 7f1b8c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/TailBlazer/Views/FileTailerViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public FileTailerViewModel(ILogger logger,ISchedulerProvider schedulerProvider,
var mode = AutoTail ? ScrollingMode.Tail : ScrollingMode.User;
return new ScrollRequest(mode, user.PageSize, user.FirstIndex);
})
.Sample(TimeSpan.FromMilliseconds(50))
.Sample(TimeSpan.FromMilliseconds(150))
.DistinctUntilChanged();

var tailer = new FileTailer(fileInfo, filterRequest, scroller);
Expand Down

0 comments on commit 7f1b8c2

Please sign in to comment.