Skip to content

Commit

Permalink
saba-ja: reduced px tolerance
Browse files Browse the repository at this point in the history
  • Loading branch information
janamian authored and LeStarch committed Aug 18, 2021
1 parent ac4ecae commit bf4dd30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fprime_gds/flask/static/js/vue-support/event.js
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ Vue.component("event-list", {
let elmH = this.scrollableElm.scrollHeight;
let elmT = this.scrollableElm.scrollTop;
let elmC = this.scrollableElm.clientHeight;
let isAtBottom = (Math.abs(elmH - elmT - elmC) <= 3.0) && (elmT !== 0);
let isAtBottom = (Math.abs(elmH - elmT - elmC) <= 2.0) && (elmT !== 0);

if (!this.isScrollable()) {
// Disabling auto update user scrolls
Expand Down

0 comments on commit bf4dd30

Please sign in to comment.